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.

18 lines 573 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.compileAssociations = void 0; function compileAssociations(source) { source = source.trim(); if (source.length === 0) return []; const stringAssociations = source.split(' '); return stringAssociations.map((stringAssociation) => { const units = stringAssociation.split('='); return { key: units[0], value: units[1], }; }); } exports.compileAssociations = compileAssociations; //# sourceMappingURL=cli_utils.js.map