UNPKG

yarle-evernote-to-md

Version:

Yet Another Rope Ladder from Evernote

18 lines 523 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createTanaNode = void 0; const createTanaNode = (type, content, data, uid) => { if (!uid) uid = 'uuid' + Math.random(); return { uid, createdAt: new Date(data.createdAt).getTime(), editedAt: new Date(data.updatedAt).getTime(), type, name: content, refs: [], children: [] }; }; exports.createTanaNode = createTanaNode; //# sourceMappingURL=create-tana-node.js.map