From 22dc033f4938d6a19e086a1cbd36ec5cade5eaab Mon Sep 17 00:00:00 2001 From: Priyansh Date: Tue, 22 Dec 2020 17:50:12 +0530 Subject: Remove node_modules --- node_modules/core-js/internals/math-scale.js | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 node_modules/core-js/internals/math-scale.js (limited to 'node_modules/core-js/internals/math-scale.js') diff --git a/node_modules/core-js/internals/math-scale.js b/node_modules/core-js/internals/math-scale.js deleted file mode 100644 index 5928862..0000000 --- a/node_modules/core-js/internals/math-scale.js +++ /dev/null @@ -1,16 +0,0 @@ -// `Math.scale` method implementation -// https://rwaldron.github.io/proposal-math-extensions/ -module.exports = Math.scale || function scale(x, inLow, inHigh, outLow, outHigh) { - if ( - arguments.length === 0 - /* eslint-disable no-self-compare */ - || x != x - || inLow != inLow - || inHigh != inHigh - || outLow != outLow - || outHigh != outHigh - /* eslint-enable no-self-compare */ - ) return NaN; - if (x === Infinity || x === -Infinity) return x; - return (x - inLow) * (outHigh - outLow) / (inHigh - inLow) + outLow; -}; -- cgit v1.2.3