Package Exports
- readase
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (readase) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
readASE 
readASE lets you read Adobe Swatch (ASE) files as JavaScript objects.
npm install readase --save-dev
const fs = require('fs');
const readASE = require('readase');
fs.readFile(
'my-brand.ase',
(error, buffer) => {
if (!error) {
console.log(
readASE(buffer)
); // { type: "group", name: "My Brand", entries: [ ...colors] }
}
}
);