sindresorhus / math-sign

ES2015 Math.sign() ponyfill

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deprecated as this is now natively available in all modern browsers and Node.js versions.


math-sign

ES2015 Math.sign() ponyfill

Install

$ npm install --save math-sign

Usage

var mathSign = require('math-sign');

mathSign(5);
//=> 1

mathSign(-2);
//=> -1

License

MIT © Sindre Sorhus

About

ES2015 Math.sign() ponyfill

License:MIT License


Languages

Language:JavaScript 100.0%