mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 02:28:35 +00:00
6 lines
100 B
JavaScript
6 lines
100 B
JavaScript
|
'use strict';
|
||
|
|
||
|
exports.bin = function bin(str) {
|
||
|
return parseInt(str.replace(/[^01]/g, ''), 2);
|
||
|
}
|