feat: 초기 프로젝트 설정 및 룰.md 파일 추가
This commit is contained in:
18
api.hyungi.net/node_modules/charm/lib/encode.js
generated
vendored
Normal file
18
api.hyungi.net/node_modules/charm/lib/encode.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
var encode = module.exports = function (xs) {
|
||||
function bytes (s) {
|
||||
if (typeof s === 'string') {
|
||||
return s.split('').map(ord);
|
||||
}
|
||||
else if (Array.isArray(s)) {
|
||||
return s.reduce(function (acc, c) {
|
||||
return acc.concat(bytes(c));
|
||||
}, []);
|
||||
}
|
||||
}
|
||||
|
||||
return new Buffer([ 0x1b ].concat(bytes(xs)));
|
||||
};
|
||||
|
||||
var ord = encode.ord = function ord (c) {
|
||||
return c.charCodeAt(0)
|
||||
};
|
||||
Reference in New Issue
Block a user