JSPM

  • Created
  • Published
  • Downloads 908
  • Score
    100M100P100Q102833F
  • License MIT

Formula compiler and function library

Package Exports

  • formula

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

Readme

Circle CI

Formula expressions and functions for JavaScript.

Install

npm install --save formula

General Usage

import { run } from "formula";
run("sum(a, b, c) = 1+2+3", { a: 1, b: 2, c: 3 });

Browser ready

Add to the browser with:

<script type="text/javascript" src="https://unpkg.com/formula@3.8.1/lib/formula.min.js"