feat: 초기 프로젝트 설정 및 룰.md 파일 추가
This commit is contained in:
76
api.hyungi.net/node_modules/pm2-multimeter/index.js
generated
vendored
Normal file
76
api.hyungi.net/node_modules/pm2-multimeter/index.js
generated
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
var charmer = require('charm');
|
||||
var Bar = require('./lib/bar');
|
||||
|
||||
var exports = module.exports = function (c) {
|
||||
if (c instanceof charmer.Charm) {
|
||||
var charm = c;
|
||||
}
|
||||
else {
|
||||
var charm = charmer.apply(null, arguments);
|
||||
charm.on('^C', function () {
|
||||
charm.destroy();
|
||||
});
|
||||
}
|
||||
|
||||
var multi = function (x, y, params) {
|
||||
if (typeof x === 'object') {
|
||||
params = x;
|
||||
x = params.x;
|
||||
y = params.y;
|
||||
}
|
||||
if (!params) params = {};
|
||||
|
||||
if (x === undefined) x = '+0';
|
||||
if (y === undefined) y = '+0';
|
||||
|
||||
var bar = new Bar(charm, x, y, params);
|
||||
multi.bars.push(bar);
|
||||
bar.offset = multi.offset;
|
||||
multi.on('offset', function (o) {
|
||||
bar.offset = o;
|
||||
});
|
||||
return bar;
|
||||
};
|
||||
multi.bars = [];
|
||||
|
||||
multi.rel = function (x, y, params) {
|
||||
return multi(x, '-' + y, params);
|
||||
};
|
||||
|
||||
multi.drop = function (params, cb) {
|
||||
if (!cb) { cb = params; params = {} }
|
||||
|
||||
charm.position(function (x, y) {
|
||||
var bar = new Bar(charm, x, y, params);
|
||||
multi.bars.push(bar);
|
||||
multi.on('offset', function (o) {
|
||||
bar.offset = o;
|
||||
});
|
||||
cb(bar);
|
||||
});
|
||||
};
|
||||
|
||||
multi.charm = charm;
|
||||
charm.setMaxListeners(0);
|
||||
multi.destroy = charm.destroy.bind(charm);
|
||||
|
||||
multi.on = charm.on.bind(charm);
|
||||
multi.emit = charm.emit.bind(charm);
|
||||
multi.removeListener = charm.removeListener.bind(charm);
|
||||
multi.write = charm.write.bind(charm);
|
||||
|
||||
(function () {
|
||||
var offset = 0;
|
||||
Object.defineProperty(multi, 'offset', {
|
||||
set : function (o) {
|
||||
offset = o;
|
||||
multi.emit('offset', o);
|
||||
},
|
||||
get : function () {
|
||||
return offset;
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
||||
return multi;
|
||||
};
|
||||
Reference in New Issue
Block a user