UNPKG

motionlink-cli

Version:

Making it easy to use Notion as a Content Management system for personal websites, portfolios, blogs, business homepages, and other kinds of static websites.

17 lines 516 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const uuid_1 = require("uuid"); class FileNameService { genUnique() { return (0, uuid_1.v4)(); } static get instance() { var _a; return (_a = this._instance) !== null && _a !== void 0 ? _a : (this._instance = new FileNameService()); } static setMockedInstance(instance) { this._instance = instance; } } exports.default = FileNameService; //# sourceMappingURL=file_name_service.js.map