JSPM

  • Created
  • Published
  • Downloads 879
  • Score
    100M100P100Q102954F
  • License MIT

Formula compiler and function library

Package Exports

  • formula
  • formula/fn/isfunction
  • formula/fn/isobject
  • formula/fn/parsequery

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 your browser with:

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

Reduce bundle sizes

Require specific functions to reduce bundle size.

var isNumber = require('formula/fn/isnumber')
var proper = require('formula/fn/proper')

About this project

Project by FormBucket