@stdlib/math-base-special-ceiln 0.1.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2023 The Stdlib Authors.
1
+ Copyright (c) 2016-2024 The Stdlib Authors.
package/README.md CHANGED
@@ -226,8 +226,8 @@ int main() {
226
226
 
227
227
  - <span class="package-name">[`@stdlib/math-base/special/ceil`][@stdlib/math/base/special/ceil]</span><span class="delimiter">: </span><span class="description">round a double-precision floating-point number toward positive infinity.</span>
228
228
  - <span class="package-name">[`@stdlib/math-base/special/ceilb`][@stdlib/math/base/special/ceilb]</span><span class="delimiter">: </span><span class="description">round a numeric value to the nearest multiple of b^n toward positive infinity.</span>
229
- - <span class="package-name">[`@stdlib/math-base/special/floorn`][@stdlib/math/base/special/floorn]</span><span class="delimiter">: </span><span class="description">round a numeric value to the nearest multiple of 10^n toward negative infinity.</span>
230
- - <span class="package-name">[`@stdlib/math-base/special/roundn`][@stdlib/math/base/special/roundn]</span><span class="delimiter">: </span><span class="description">round a numeric value to the nearest multiple of 10^n.</span>
229
+ - <span class="package-name">[`@stdlib/math-base/special/floorn`][@stdlib/math/base/special/floorn]</span><span class="delimiter">: </span><span class="description">round a double-precision floating-point number to the nearest multiple of 10^n toward negative infinity.</span>
230
+ - <span class="package-name">[`@stdlib/math-base/special/roundn`][@stdlib/math/base/special/roundn]</span><span class="delimiter">: </span><span class="description">round a double-precision floating-point number to the nearest multiple of 10^n.</span>
231
231
 
232
232
  </section>
233
233
 
@@ -259,7 +259,7 @@ See [LICENSE][stdlib-license].
259
259
 
260
260
  ## Copyright
261
261
 
262
- Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
262
+ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
263
263
 
264
264
  </section>
265
265
 
@@ -272,8 +272,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
272
272
  [npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-special-ceiln.svg
273
273
  [npm-url]: https://npmjs.org/package/@stdlib/math-base-special-ceiln
274
274
 
275
- [test-image]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml/badge.svg?branch=v0.1.0
276
- [test-url]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml?query=branch:v0.1.0
275
+ [test-image]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml/badge.svg?branch=v0.2.1
276
+ [test-url]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml?query=branch:v0.2.1
277
277
 
278
278
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-ceiln/main.svg
279
279
  [coverage-url]: https://codecov.io/github/stdlib-js/math-base-special-ceiln?branch=main
@@ -296,8 +296,11 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
296
296
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
297
297
 
298
298
  [deno-url]: https://github.com/stdlib-js/math-base-special-ceiln/tree/deno
299
+ [deno-readme]: https://github.com/stdlib-js/math-base-special-ceiln/blob/deno/README.md
299
300
  [umd-url]: https://github.com/stdlib-js/math-base-special-ceiln/tree/umd
301
+ [umd-readme]: https://github.com/stdlib-js/math-base-special-ceiln/blob/umd/README.md
300
302
  [esm-url]: https://github.com/stdlib-js/math-base-special-ceiln/tree/esm
303
+ [esm-readme]: https://github.com/stdlib-js/math-base-special-ceiln/blob/esm/README.md
301
304
  [branches-url]: https://github.com/stdlib-js/math-base-special-ceiln/blob/main/branches.md
302
305
 
303
306
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math-base-special-ceiln/main/LICENSE
package/SECURITY.md ADDED
@@ -0,0 +1,5 @@
1
+ # Security
2
+
3
+ > Policy for reporting security vulnerabilities.
4
+
5
+ See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/math-base-special-ceiln",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Round a numeric value to the nearest multiple of 10^n toward positive infinity.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -16,21 +16,14 @@
16
16
  "main": "./lib",
17
17
  "gypfile": false,
18
18
  "directories": {
19
- "benchmark": "./benchmark",
20
19
  "doc": "./docs",
21
- "example": "./examples",
22
20
  "include": "./include",
23
21
  "lib": "./lib",
24
22
  "src": "./src",
25
- "test": "./test"
23
+ "dist": "./dist"
26
24
  },
27
25
  "types": "./docs/types",
28
- "scripts": {
29
- "test": "make test",
30
- "test-cov": "make test-cov",
31
- "examples": "make examples",
32
- "benchmark": "make benchmark"
33
- },
26
+ "scripts": {},
34
27
  "homepage": "https://stdlib.io",
35
28
  "repository": {
36
29
  "type": "git",
@@ -40,33 +33,20 @@
40
33
  "url": "https://github.com/stdlib-js/stdlib/issues"
41
34
  },
42
35
  "dependencies": {
43
- "@stdlib/constants-float64-max-base10-exponent": "^0.1.0",
44
- "@stdlib/constants-float64-max-safe-integer": "^0.1.0",
45
- "@stdlib/constants-float64-min-base10-exponent": "^0.1.0",
46
- "@stdlib/constants-float64-min-base10-exponent-subnormal": "^0.1.0",
47
- "@stdlib/constants-float64-pinf": "^0.1.0",
48
- "@stdlib/math-base-assert-is-infinite": "^0.1.0",
49
- "@stdlib/math-base-assert-is-nan": "^0.1.0",
50
- "@stdlib/math-base-napi-binary": "^0.1.0",
51
- "@stdlib/math-base-special-abs": "^0.1.0",
52
- "@stdlib/math-base-special-ceil": "^0.1.0",
53
- "@stdlib/math-base-special-pow": "^0.1.0",
54
- "@stdlib/utils-library-manifest": "^0.1.0"
55
- },
56
- "devDependencies": {
57
- "@stdlib/bench": "^0.1.0",
58
- "@stdlib/constants-float64-eps": "^0.1.0",
59
- "@stdlib/constants-float64-ninf": "^0.1.0",
60
- "@stdlib/constants-float64-pi": "^0.1.0",
61
- "@stdlib/math-base-assert-is-negative-zero": "^0.1.0",
62
- "@stdlib/math-base-assert-is-positive-zero": "^0.1.0",
63
- "@stdlib/math-base-special-round": "^0.1.0",
64
- "@stdlib/random-base-randu": "^0.0.8",
65
- "@stdlib/utils-try-require": "^0.1.0",
66
- "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
67
- "istanbul": "^0.4.1",
68
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
36
+ "@stdlib/constants-float64-max-base10-exponent": "^0.2.1",
37
+ "@stdlib/constants-float64-max-safe-integer": "^0.2.1",
38
+ "@stdlib/constants-float64-min-base10-exponent": "^0.2.1",
39
+ "@stdlib/constants-float64-min-base10-exponent-subnormal": "^0.2.0",
40
+ "@stdlib/constants-float64-pinf": "^0.2.1",
41
+ "@stdlib/math-base-assert-is-infinite": "^0.2.1",
42
+ "@stdlib/math-base-assert-is-nan": "^0.2.1",
43
+ "@stdlib/math-base-napi-binary": "^0.2.1",
44
+ "@stdlib/math-base-special-abs": "^0.2.1",
45
+ "@stdlib/math-base-special-ceil": "^0.2.1",
46
+ "@stdlib/math-base-special-pow": "^0.2.1",
47
+ "@stdlib/utils-library-manifest": "^0.2.1"
69
48
  },
49
+ "devDependencies": {},
70
50
  "engines": {
71
51
  "node": ">=0.10.0",
72
52
  "npm": ">2.7.0"
package/CITATION.cff DELETED
@@ -1,30 +0,0 @@
1
- cff-version: 1.2.0
2
- title: stdlib
3
- message: >-
4
- If you use this software, please cite it using the
5
- metadata from this file.
6
-
7
- type: software
8
-
9
- authors:
10
- - name: The Stdlib Authors
11
- url: https://github.com/stdlib-js/stdlib/graphs/contributors
12
-
13
- repository-code: https://github.com/stdlib-js/stdlib
14
- url: https://stdlib.io
15
-
16
- abstract: |
17
- Standard library for JavaScript and Node.js.
18
-
19
- keywords:
20
- - JavaScript
21
- - Node.js
22
- - TypeScript
23
- - standard library
24
- - scientific computing
25
- - numerical computing
26
- - statistical computing
27
-
28
- license: Apache-2.0 AND BSL-1.0
29
-
30
- date-released: 2016