diff --git a/lib/node_modules/@stdlib/utils/README.md b/lib/node_modules/@stdlib/utils/README.md
index a310854511a6..1666a4a853c3 100644
--- a/lib/node_modules/@stdlib/utils/README.md
+++ b/lib/node_modules/@stdlib/utils/README.md
@@ -59,7 +59,6 @@ The namespace has the following sub-namespaces:
- [`anyByRight( collection, predicate[, thisArg ] )`][@stdlib/utils/any-by-right]: test whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.
- [`anyBy( collection, predicate[, thisArg ] )`][@stdlib/utils/any-by]: test whether at least one element in a collection passes a test implemented by a predicate function.
-- [`anyOwnBy( collection, predicate[, thisArg ] )`][@stdlib/utils/any-own-by]: test whether at least one own property of a provided object passes a test implemented by a predicate function.
- [`any( collection )`][@stdlib/utils/any]: test whether at least one element in a collection is truthy.
- [`append( collection1, collection2 )`][@stdlib/utils/append]: add elements from one collection to the end of another collection.
- [`bifurcateBy( collection, [options,] predicate )`][@stdlib/utils/bifurcate-by]: split values into two groups according to a predicate function.
@@ -82,7 +81,6 @@ The namespace has the following sub-namespaces:
- [`keyBy( collection, fcn[, thisArg ] )`][@stdlib/utils/key-by]: convert a collection to an object whose keys are determined by a provided function and whose values are the collection values.
- [`noneByRight( collection, predicate[, thisArg ] )`][@stdlib/utils/none-by-right]: test whether all elements in a collection fail a test implemented by a predicate function, iterating from right to left.
- [`noneBy( collection, predicate[, thisArg ] )`][@stdlib/utils/none-by]: test whether all elements in a collection fail a test implemented by a predicate function.
-- [`noneOwnBy( object, predicate[, thisArg ] )`][@stdlib/utils/none-own-by]: tests whether every own property of an object fails a test implemented by a predicate function.
- [`none( collection )`][@stdlib/utils/none]: test whether all elements in a collection are falsy.
- [`pop( collection )`][@stdlib/utils/pop]: remove and return the last element of a collection.
- [`prepend( collection1, collection2 )`][@stdlib/utils/prepend]: add elements from one collection to the beginning of another collection.
@@ -710,8 +708,6 @@ console.log( objectKeys( utils ) );
[@stdlib/utils/any-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/any-by
-[@stdlib/utils/any-own-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/any-own-by
-
[@stdlib/utils/any]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/any
[@stdlib/utils/append]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/append
@@ -756,8 +752,6 @@ console.log( objectKeys( utils ) );
[@stdlib/utils/none-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/none-by
-[@stdlib/utils/none-own-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/none-own-by
-
[@stdlib/utils/none]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/none
[@stdlib/utils/pop]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/pop