@stdlib/number-float64-base-to-float32 0.2.1 → 0.2.2
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/README.md +2 -2
- package/dist/index.js +18 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -149,8 +149,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
149
149
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/number-float64-base-to-float32.svg
|
|
150
150
|
[npm-url]: https://npmjs.org/package/@stdlib/number-float64-base-to-float32
|
|
151
151
|
|
|
152
|
-
[test-image]: https://github.com/stdlib-js/number-float64-base-to-float32/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
153
|
-
[test-url]: https://github.com/stdlib-js/number-float64-base-to-float32/actions/workflows/test.yml?query=branch:v0.2.
|
|
152
|
+
[test-image]: https://github.com/stdlib-js/number-float64-base-to-float32/actions/workflows/test.yml/badge.svg?branch=v0.2.2
|
|
153
|
+
[test-url]: https://github.com/stdlib-js/number-float64-base-to-float32/actions/workflows/test.yml?query=branch:v0.2.2
|
|
154
154
|
|
|
155
155
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/number-float64-base-to-float32/main.svg
|
|
156
156
|
[coverage-url]: https://codecov.io/github/stdlib-js/number-float64-base-to-float32?branch=main
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
|
-
"use strict";var e=function(t,r){return function(){return r||t((r={exports:{}}).exports,r),r.exports}};var a=e(function(F,u){
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
"use strict";var e=function(t,r){return function(){return r||t((r={exports:{}}).exports,r),r.exports}};var a=e(function(F,u){"use strict";var s=typeof Math.fround=="function"?Math.fround:null;u.exports=s});var f=e(function(d,n){"use strict";var c=require("@stdlib/array-float32"),i=new c(1);function p(t){return i[0]=t,i[0]}n.exports=p});var l=a(),v=f(),o;typeof l=="function"?o=l:o=v;module.exports=o;
|
|
2
|
+
/**
|
|
3
|
+
* @license Apache-2.0
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) 2018 The Stdlib Authors.
|
|
6
|
+
*
|
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
* you may not use this file except in compliance with the License.
|
|
9
|
+
* You may obtain a copy of the License at
|
|
10
|
+
*
|
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
*
|
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
* See the License for the specific language governing permissions and
|
|
17
|
+
* limitations under the License.
|
|
18
|
+
*/
|
|
7
19
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED