source: node_modules/ramda-adjunct/lib/internal/ponyfills/Math.sign.js@ 65b6638

main
Last change on this file since 65b6638 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 233 bytes
Line 
1"use strict";
2
3exports.__esModule = true;
4exports["default"] = void 0;
5var signPonyfill = function signPonyfill(number) {
6 return (number > 0) - (number < 0) || +number;
7};
8var _default = signPonyfill;
9exports["default"] = _default;
Note: See TracBrowser for help on using the repository browser.