source:
node_modules/ramda-adjunct/lib/internal/ponyfills/Math.sign.js@
65b6638
Last change on this file since 65b6638 was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 233 bytes |
Line | |
---|---|
1 | "use strict"; |
2 | |
3 | exports.__esModule = true; |
4 | exports["default"] = void 0; |
5 | var signPonyfill = function signPonyfill(number) { |
6 | return (number > 0) - (number < 0) || +number; |
7 | }; |
8 | var _default = signPonyfill; |
9 | exports["default"] = _default; |
Note:
See TracBrowser
for help on using the repository browser.