source: imaps-frontend/node_modules/es-abstract/2021/abs.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 207 bytes
Line 
1'use strict';
2
3var GetIntrinsic = require('get-intrinsic');
4
5var $abs = GetIntrinsic('%Math.abs%');
6
7// http://262.ecma-international.org/5.1/#sec-5.2
8
9module.exports = function abs(x) {
10 return $abs(x);
11};
Note: See TracBrowser for help on using the repository browser.