@stdlib/math-base-special-ceiln 0.1.0 → 0.2.0
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 +1 -1
- package/README.md +8 -5
- package/SECURITY.md +5 -0
- package/package.json +24 -23
- package/CITATION.cff +0 -30
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
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
|
|
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
|
|
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 © 2016-
|
|
262
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
263
263
|
|
|
264
264
|
</section>
|
|
265
265
|
|
|
@@ -272,8 +272,8 @@ Copyright © 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.
|
|
276
|
-
[test-url]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml?query=branch:v0.
|
|
275
|
+
[test-image]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml/badge.svg?branch=v0.2.0
|
|
276
|
+
[test-url]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml?query=branch:v0.2.0
|
|
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 © 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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/math-base-special-ceiln",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
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": {
|
|
@@ -40,32 +40,33 @@
|
|
|
40
40
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@stdlib/constants-float64-max-base10-exponent": "^0.
|
|
44
|
-
"@stdlib/constants-float64-max-safe-integer": "^0.
|
|
45
|
-
"@stdlib/constants-float64-min-base10-exponent": "^0.
|
|
46
|
-
"@stdlib/constants-float64-min-base10-exponent-subnormal": "^0.
|
|
47
|
-
"@stdlib/constants-float64-pinf": "^0.
|
|
48
|
-
"@stdlib/math-base-assert-is-infinite": "^0.
|
|
49
|
-
"@stdlib/math-base-assert-is-nan": "^0.
|
|
50
|
-
"@stdlib/math-base-napi-binary": "^0.
|
|
51
|
-
"@stdlib/math-base-special-abs": "^0.
|
|
52
|
-
"@stdlib/math-base-special-ceil": "^0.
|
|
53
|
-
"@stdlib/math-base-special-pow": "^0.
|
|
54
|
-
"@stdlib/utils-library-manifest": "^0.
|
|
43
|
+
"@stdlib/constants-float64-max-base10-exponent": "^0.2.0",
|
|
44
|
+
"@stdlib/constants-float64-max-safe-integer": "^0.2.0",
|
|
45
|
+
"@stdlib/constants-float64-min-base10-exponent": "^0.2.0",
|
|
46
|
+
"@stdlib/constants-float64-min-base10-exponent-subnormal": "^0.2.0",
|
|
47
|
+
"@stdlib/constants-float64-pinf": "^0.2.0",
|
|
48
|
+
"@stdlib/math-base-assert-is-infinite": "^0.2.0",
|
|
49
|
+
"@stdlib/math-base-assert-is-nan": "^0.2.0",
|
|
50
|
+
"@stdlib/math-base-napi-binary": "^0.2.0",
|
|
51
|
+
"@stdlib/math-base-special-abs": "^0.2.0",
|
|
52
|
+
"@stdlib/math-base-special-ceil": "^0.2.0",
|
|
53
|
+
"@stdlib/math-base-special-pow": "^0.2.0",
|
|
54
|
+
"@stdlib/utils-library-manifest": "^0.2.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@stdlib/
|
|
58
|
-
"@stdlib/constants-float64-
|
|
59
|
-
"@stdlib/constants-float64-
|
|
60
|
-
"@stdlib/
|
|
61
|
-
"@stdlib/math-base-assert-is-
|
|
62
|
-
"@stdlib/math-base-
|
|
63
|
-
"@stdlib/
|
|
64
|
-
"@stdlib/
|
|
65
|
-
"@stdlib/utils-try-require": "^0.1.0",
|
|
57
|
+
"@stdlib/constants-float64-eps": "^0.1.1",
|
|
58
|
+
"@stdlib/constants-float64-ninf": "^0.1.1",
|
|
59
|
+
"@stdlib/constants-float64-pi": "^0.1.1",
|
|
60
|
+
"@stdlib/math-base-assert-is-negative-zero": "^0.1.1",
|
|
61
|
+
"@stdlib/math-base-assert-is-positive-zero": "^0.1.1",
|
|
62
|
+
"@stdlib/math-base-special-round": "^0.1.1",
|
|
63
|
+
"@stdlib/random-base-randu": "^0.1.0",
|
|
64
|
+
"@stdlib/utils-try-require": "^0.2.0",
|
|
66
65
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
67
66
|
"istanbul": "^0.4.1",
|
|
68
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
67
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
68
|
+
"@stdlib/bench-harness": "^0.2.0",
|
|
69
|
+
"@stdlib/bench": "^0.3.1"
|
|
69
70
|
},
|
|
70
71
|
"engines": {
|
|
71
72
|
"node": ">=0.10.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
|