summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/math/decbin.js.map
blob: 956a9e323c9a2e6573b82c97b590c1871e4317b2 (plain) (blame)
1
{"version":3,"sources":["../../../src/php/math/decbin.js"],"names":["module","exports","decbin","number","parseInt","toString"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,MAAjB,EAAyB;AACxC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIA,SAAS,CAAb,EAAgB;AACdA,aAAS,aAAaA,MAAb,GAAsB,CAA/B;AACD;AACD,SAAOC,SAASD,MAAT,EAAiB,EAAjB,EACJE,QADI,CACK,CADL,CAAP;AAED,CAnBD","file":"decbin.js","sourcesContent":["module.exports = function decbin (number) {\n  //  discuss at: http://locutus.io/php/decbin/\n  // original by: Enrique Gonzalez\n  // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)\n  // improved by: http://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hex-in-javascript\n  //    input by: pilus\n  //    input by: nord_ua\n  //   example 1: decbin(12)\n  //   returns 1: '1100'\n  //   example 2: decbin(26)\n  //   returns 2: '11010'\n  //   example 3: decbin('26')\n  //   returns 3: '11010'\n\n  if (number < 0) {\n    number = 0xFFFFFFFF + number + 1\n  }\n  return parseInt(number, 10)\n    .toString(2)\n}\n"]}