Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion lib/node_modules/@stdlib/complex/float32/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,10 @@
"ns",
"float32",
"base"
]
],
"__stdlib__": {
"scaffold": {
"alias_prefix": "stdlib_base_complex64_"
}
}
}
7 changes: 6 additions & 1 deletion lib/node_modules/@stdlib/complex/float64/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,10 @@
"ns",
"float64",
"base"
]
],
"__stdlib__": {
"scaffold": {
"alias_prefix": "stdlib_base_complex128_"
}
}
}
7 changes: 6 additions & 1 deletion lib/node_modules/@stdlib/math/base/special/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,10 @@
"lib",
"mathematics",
"math"
]
],
"__stdlib__": {
"scaffold": {
"alias_prefix": "stdlib_base_"
}
}
}
7 changes: 6 additions & 1 deletion lib/node_modules/@stdlib/number/float32/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,10 @@
"number",
"32-bit",
"ieee754"
]
],
"__stdlib__": {
"scaffold": {
"alias_prefix": "stdlib_base_float32_"
}
}
}
7 changes: 6 additions & 1 deletion lib/node_modules/@stdlib/number/float64/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,10 @@
"number",
"64-bit",
"ieee754"
]
],
"__stdlib__": {
"scaffold": {
"alias_prefix": "stdlib_base_float64_"
}
}
}
51 changes: 51 additions & 0 deletions lib/node_modules/@stdlib/number/int16/base/lib/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2025 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

/*
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
*/

// MODULES //

var setReadOnly = require( '@stdlib/utils/define-read-only-property' );


// MAIN //

/**
* Top-level namespace.
*
* @namespace ns
*/
var ns = {};

/**
* @name identity
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/number/int16/base/identity}
*/
setReadOnly( ns, 'identity', require( '@stdlib/number/int16/base/identity' ) );


// EXPORTS //

module.exports = ns;
66 changes: 66 additions & 0 deletions lib/node_modules/@stdlib/number/int16/base/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"name": "@stdlib/number/int16/base",
"version": "0.0.0",
"description": "Base utilities for signed 16-bit integers.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
},
"contributors": [
{
"name": "The Stdlib Authors",
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
}
],
"main": "lib/index.js",
"directories": {
"lib": "./lib",
"test": "./test"
},
"types": "./docs/types",
"scripts": {},
"homepage": "https://github.com/stdlib-js/stdlib",
"repository": {
"type": "git",
"url": "git://github.com/stdlib-js/stdlib.git"
},
"bugs": {
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {},
"devDependencies": {},
"engines": {
"node": ">=0.10.0",
"npm": ">2.7.0"
},
"os": [
"aix",
"darwin",
"freebsd",
"linux",
"macos",
"openbsd",
"sunos",
"win32",
"windows"
],
"keywords": [
"stdlib",
"stdtypes",
"types",
"base",
"namespace",
"ns",
"int16",
"signed",
"integer",
"int",
"16-bit"
],
"__stdlib__": {
"scaffold": {
"alias_prefix": "stdlib_base_int16_"
}
}
}
40 changes: 40 additions & 0 deletions lib/node_modules/@stdlib/number/int16/base/test/test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2025 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var tape = require( 'tape' );
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( './../lib' );


// TESTS //

tape( 'main export is an object', function test( t ) {
t.ok( true, __filename );
t.strictEqual( typeof ns, 'object', 'main export is an object' );
t.end();
});

tape( 'the exported object contains key-value pairs', function test( t ) {
var keys = objectKeys( ns );
t.strictEqual( keys.length > 0, true, 'has keys' );
t.end();
});
7 changes: 6 additions & 1 deletion lib/node_modules/@stdlib/number/int32/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,10 @@
"integer",
"int",
"32-bit"
]
],
"__stdlib__": {
"scaffold": {
"alias_prefix": "stdlib_base_int32_"
}
}
}
51 changes: 51 additions & 0 deletions lib/node_modules/@stdlib/number/int8/base/lib/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2025 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

/*
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
*/

// MODULES //

var setReadOnly = require( '@stdlib/utils/define-read-only-property' );


// MAIN //

/**
* Top-level namespace.
*
* @namespace ns
*/
var ns = {};

/**
* @name identity
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/number/int8/base/identity}
*/
setReadOnly( ns, 'identity', require( '@stdlib/number/int8/base/identity' ) );


// EXPORTS //

module.exports = ns;
66 changes: 66 additions & 0 deletions lib/node_modules/@stdlib/number/int8/base/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"name": "@stdlib/number/int8/base",
"version": "0.0.0",
"description": "Base utilities for signed 8-bit integers.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
},
"contributors": [
{
"name": "The Stdlib Authors",
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
}
],
"main": "lib/index.js",
"directories": {
"lib": "./lib",
"test": "./test"
},
"types": "./docs/types",
"scripts": {},
"homepage": "https://github.com/stdlib-js/stdlib",
"repository": {
"type": "git",
"url": "git://github.com/stdlib-js/stdlib.git"
},
"bugs": {
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {},
"devDependencies": {},
"engines": {
"node": ">=0.10.0",
"npm": ">2.7.0"
},
"os": [
"aix",
"darwin",
"freebsd",
"linux",
"macos",
"openbsd",
"sunos",
"win32",
"windows"
],
"keywords": [
"stdlib",
"stdtypes",
"types",
"base",
"namespace",
"ns",
"int8",
"signed",
"integer",
"int",
"8-bit"
],
"__stdlib__": {
"scaffold": {
"alias_prefix": "stdlib_base_int8_"
}
}
}
40 changes: 40 additions & 0 deletions lib/node_modules/@stdlib/number/int8/base/test/test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2025 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var tape = require( 'tape' );
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( './../lib' );


// TESTS //

tape( 'main export is an object', function test( t ) {
t.ok( true, __filename );
t.strictEqual( typeof ns, 'object', 'main export is an object' );
t.end();
});

tape( 'the exported object contains key-value pairs', function test( t ) {
var keys = objectKeys( ns );
t.strictEqual( keys.length > 0, true, 'has keys' );
t.end();
});
Loading