Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const cells = obj.nodes.map(({value}) => {
const cell = parseCell(value);
cell.input = value;
return cell;
});
const resolve = this.resolve;
module(text) {
const m1 = parseModule(text);
return createModuleDefintion(m1, this.resolve, this.resolveFileAttachments);
}
notebook(obj) {