mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-04 01:50:17 +08: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);
|
||
|
|
}
|