JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q34011F
  • License GPL-3.0

Utilities to use with terrabrasilis necessity and functionality

Package Exports

  • terrabrasilis-util

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 (terrabrasilis-util) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Instalations

Access NPM: https://www.npmjs.com/package/terrabrasilis-util

npm install --save terrabrasilis-util

Using the module

In Node.js

const { Stack, Queue } = require('terrabrasilis-util');

Stack.insert('value');
Stack.remove();
Stack.getLast();
Stack.getLength();

Queue.insert('value');
Queue.remove();
Queue.getFirst();
Queue.getLength();

Release History

Travis CI: Build Status

  • 0.0.1 Initial release
  • 0.0.2 Initial release
  • 0.0.3 Initial release
  • 0.0.4 Initial release
  • 0.0.5 Initial release