Page MenuHomeSealhub

chip.js
No OneTemporary

"use strict";
const Promise = require("bluebird");
let ChipManager;
const Chip = function(type, name){
this.type = type;
this.name = name;
this.longid = `${type}.${name}`;
};
Chip.prototype.start = function(){
// to be overwritten
return Promise.resolve();
};
module.exports = Chip;

File Metadata

Mime Type
text/plain
Expires
Mon, May 19, 00:55 (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
661710
Default Alt Text
chip.js (292 B)

Event Timeline