Skip to content

Commit 91d0cd0

Browse files
committed
Auto-generated commit
1 parent c110058 commit 91d0cd0

File tree

13 files changed

+12
-836
lines changed

13 files changed

+12
-836
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,16 @@
3636

3737
### BREAKING CHANGES
3838

39+
- [`8653809`](https://github.com/stdlib-js/stdlib/commit/8653809bec91a38db812e64847db9adf4d429602): remove `utils/none-own-by`
40+
41+
- To migrate, users should update their require/import paths to use
42+
`@stdlib/object/none-own-by` which provides the same API and implementation.
43+
44+
- [`3d7187a`](https://github.com/stdlib-js/stdlib/commit/3d7187a634c8b5882e34522c608d4d4def321038): remove `noneOwnBy`
45+
46+
- To migrate, users should access the same symbol via the
47+
`@stdlib/object` namespace.
48+
3949
- [`412d1de`](https://github.com/stdlib-js/stdlib/commit/412d1deb27ab20764d4096c5531c72964cae282c): remove `anyInBy`
4050

4151
- To migrate, users should access the same symbol via the
@@ -182,6 +192,8 @@ A total of 20 issues were closed in this release:
182192

183193
<details>
184194

195+
- [`8653809`](https://github.com/stdlib-js/stdlib/commit/8653809bec91a38db812e64847db9adf4d429602) - **remove:** remove `utils/none-own-by` _(by Neeraj Pathak)_
196+
- [`3d7187a`](https://github.com/stdlib-js/stdlib/commit/3d7187a634c8b5882e34522c608d4d4def321038) - **remove:** remove `noneOwnBy` from namespace _(by Neeraj Pathak)_
185197
- [`412d1de`](https://github.com/stdlib-js/stdlib/commit/412d1deb27ab20764d4096c5531c72964cae282c) - **remove:** remove `anyInBy` from namespace _(by Athan Reines)_
186198
- [`c04a8bc`](https://github.com/stdlib-js/stdlib/commit/c04a8bc15913cb8d3130e255eea3078a82276e4e) - **remove:** remove `utils/any-own-by` _(by Neeraj Pathak)_
187199
- [`0b449a3`](https://github.com/stdlib-js/stdlib/commit/0b449a38d1f623ac56b4cec10626cd022c299c87) - **refactor:** update paths _(by Neeraj Pathak)_

docs/types/index.d.ts

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ import nextTick = require( './../../next-tick' );
150150
import none = require( './../../none' );
151151
import noneBy = require( './../../none-by' );
152152
import noneByRight = require( './../../none-by-right' );
153-
import noneOwnBy = require( './../../none-own-by' );
154153
import nonEnumerableProperties = require( './../../nonenumerable-properties' );
155154
import nonEnumerablePropertiesIn = require( './../../nonenumerable-properties-in' );
156155
import nonEnumerablePropertyNames = require( './../../nonenumerable-property-names' );
@@ -4092,37 +4091,6 @@ interface Namespace {
40924091
*/
40934092
noneByRight: typeof noneByRight;
40944093

4095-
/**
4096-
* Tests whether every property of an object fails a test implemented by a predicate function.
4097-
*
4098-
* ## Notes
4099-
*
4100-
* - The predicate function is provided three arguments:
4101-
*
4102-
* - `value`: property value
4103-
* - `key`: property key
4104-
* - `object`: the input object
4105-
*
4106-
* - The function immediately returns upon encountering a truthy return value.
4107-
* - If provided an empty object, the function returns `true`.
4108-
*
4109-
* @param object - input object
4110-
* @param predicate - test function
4111-
* @param thisArg - execution context
4112-
* @returns boolean indicating whether every property fails a test
4113-
*
4114-
* @example
4115-
* function isUnderage( v ) {
4116-
* return ( v < 18 );
4117-
* }
4118-
*
4119-
* var obj = { 'a': 20, 'b': 22, 'c': 25 };
4120-
*
4121-
* var bool = ns.noneOwnBy( obj, isUnderage );
4122-
* // returns true
4123-
*/
4124-
noneOwnBy: typeof noneOwnBy;
4125-
41264094
/**
41274095
* Returns an array of an object's own non-enumerable property names and symbols.
41284096
*

lib/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,15 +1210,6 @@ setReadOnly( utils, 'noneBy', require( './../none-by' ) );
12101210
*/
12111211
setReadOnly( utils, 'noneByRight', require( './../none-by-right' ) );
12121212

1213-
/**
1214-
* @name noneOwnBy
1215-
* @memberof utils
1216-
* @readonly
1217-
* @type {Function}
1218-
* @see {@link module:@stdlib/utils/none-own-by}
1219-
*/
1220-
setReadOnly( utils, 'noneOwnBy', require( './../none-own-by' ) );
1221-
12221213
/**
12231214
* @name nonEnumerableProperties
12241215
* @memberof utils

none-own-by/README.md

Lines changed: 0 additions & 180 deletions
This file was deleted.

none-own-by/benchmark/index.js

Lines changed: 0 additions & 60 deletions
This file was deleted.

none-own-by/docs/repl.txt

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)