Package Exports
- enolib
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 (enolib) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
enolib
The eno standard library.
Installation
npm install enolib
Getting started
A minimal example to read an eno document directly from a string with enolib
:
const enolib = require('enolib');
const document = enolib.parse('Greeting: Hello World');
console.log( document.field('Greeting').requiredStringValue() ); // prints 'Hello World!'
Documentation
Available at eno-lang.org/enolib.