-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js.map
1 lines (1 loc) · 2.14 KB
/
index.js.map
1
{"version":3,"file":"index.js","sources":["../lib/main.js"],"sourcesContent":["/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Converts a single-precision floating-point number to an unsigned 32-bit integer.\n*\n* @param {number} x - single-precision floating-point number\n* @returns {uinteger32} unsigned 32-bit integer\n*\n* @example\n* import float64ToFloat32 from '@stdlib/number-float64-base-to-float32';\n* var y = float32ToUint32( float64ToFloat32( 4294967297.0 ) );\n* // returns 0\n*\n* @example\n* import float64ToFloat32 from '@stdlib/number-float64-base-to-float32';\n* var y = float32ToUint32( float64ToFloat32( 3.14 ) );\n* // returns 3\n*\n* @example\n* import float64ToFloat32 from '@stdlib/number-float64-base-to-float32';\n* var y = float32ToUint32( float64ToFloat32( -3.14 ) );\n* // returns 4294967293\n*\n* @example\n* import float64ToFloat32 from '@stdlib/number-float64-base-to-float32';\n* var y = float32ToUint32( float64ToFloat32( NaN ) );\n* // returns 0\n*\n* @example\n* import float64ToFloat32 from '@stdlib/number-float64-base-to-float32';\n* var y = float32ToUint32( float64ToFloat32( Infinity ) );\n* // returns 0\n*\n* @example\n* import float64ToFloat32 from '@stdlib/number-float64-base-to-float32';\n* var y = float32ToUint32( float64ToFloat32( -Infinity ) );\n* // returns 0\n*/\nfunction float32ToUint32( x ) {\n\t// NOTE: we could also use typed-arrays to achieve the same end.\n\treturn x >>> 0;\n}\n\n\n// EXPORTS //\n\nexport default float32ToUint32;\n"],"names":["x"],"mappings":";gDA0DA,SAA0BA,GAEzB,OAAOA,IAAM,CACd"}