Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Oct 9, 2022
1 parent 63ca816 commit ece821c
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Milan Raj <[email protected]>
Momtchil Momtchev <[email protected]>
Ognjen Jevremović <[email protected]>
Philipp Burckhardt <[email protected]>
Pranav <[email protected]>
Ricky Reusser <[email protected]>
Ryan Seal <[email protected]>
Seyyed Parsa Neshaei <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion deep-pluck/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

var deepGet = require( './../../deep-get' ).factory;
var isArray = require( '@stdlib/assert/is-array' );
var format = require( '@stdlib/string/format' );
var copy = require( './../../copy' );
var defaults = require( './defaults.json' );
var validate = require( './validate.js' );
var format = require( '@stdlib/string/format' );


// MAIN //
Expand Down
1 change: 1 addition & 0 deletions enumerable-properties-in/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ var getOwnPropertyNames = require( './../../property-names' );
var getPrototypeOf = require( './../../get-prototype-of' );
var hasOwnProp = require( '@stdlib/assert/has-own-property' );
var isEnumerable = require( '@stdlib/assert/is-enumerable-property' );
var Object = require( '@stdlib/object/ctor' );


// MAIN //
Expand Down
1 change: 1 addition & 0 deletions get-prototype-of/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

// MODULES //

var Object = require( '@stdlib/object/ctor' );
var getProto = require( './detect.js' );


Expand Down
1 change: 1 addition & 0 deletions nonenumerable-property-symbols-in/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ var getOwnPropertySymbols = require( './../../property-symbols' );
var getPrototypeOf = require( './../../get-prototype-of' );
var isNonEnumerableProperty = require( '@stdlib/assert/is-nonenumerable-property' );
var hasOwnProp = require( '@stdlib/assert/has-own-property' );
var Object = require( '@stdlib/object/ctor' );


// MAIN //
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"@stdlib/function": "github:stdlib-js/function#main",
"@stdlib/math": "github:stdlib-js/math#main",
"@stdlib/ndarray": "github:stdlib-js/ndarray#main",
"@stdlib/object": "github:stdlib-js/object#main",
"@stdlib/os": "github:stdlib-js/os#main",
"@stdlib/process": "github:stdlib-js/process#main",
"@stdlib/random": "github:stdlib-js/random#main",
Expand All @@ -62,7 +63,6 @@
"@stdlib/bench": "github:stdlib-js/bench",
"@stdlib/complex": "github:stdlib-js/complex",
"@stdlib/number": "github:stdlib-js/number",
"@stdlib/object": "github:stdlib-js/object",
"@stdlib/proxy": "github:stdlib-js/proxy",
"chai": "^3.5.0",
"proxyquire": "^2.0.0",
Expand Down
1 change: 1 addition & 0 deletions properties-in/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
var getOwnPropertySymbols = require( './../../property-symbols' );
var getOwnPropertyNames = require( './../../property-names' );
var getPrototypeOf = require( './../../get-prototype-of' );
var Object = require( '@stdlib/object/ctor' );


// FUNCTIONS //
Expand Down
1 change: 1 addition & 0 deletions property-names-in/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

var getOwnPropertyNames = require( './../../property-names' );
var getPrototypeOf = require( './../../get-prototype-of' );
var Object = require( '@stdlib/object/ctor' );


// FUNCTIONS //
Expand Down
5 changes: 5 additions & 0 deletions property-symbols/lib/builtin.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@

'use strict';

// MODULES //

var Object = require( '@stdlib/object/ctor' );


// VARIABLES //

var propertySymbols = Object.getOwnPropertySymbols;
Expand Down
1 change: 1 addition & 0 deletions writable-property-names/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

var getOwnPropertyNames = require( './../../property-names' );
var isWritableProperty = require( '@stdlib/assert/is-writable-property' );
var Object = require( '@stdlib/object/ctor' );


// MAIN //
Expand Down

0 comments on commit ece821c

Please sign in to comment.