UNPKG

procreate-swatches

Version:
9 lines (8 loc) 282 B
import {readSwatchesFile, createSwatchesFile} from './src/index.js'; import fs from 'fs'; (async () => { const data = fs.readFileSync('./test/sample/mypalette.swatches'); console.log(data); const swatches = await readSwatchesFile(data); console.log(swatches); })();