Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

formulon

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

formulon

Salesforce Formula Parser

  • 6.22.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
187
decreased by-42.99%
Maintainers
1
Weekly downloads
 
Created
Source

Formulon

DISCLAIMER: Under heavy development, far from feature complete. See Contributing for details

semantic-release

Dependency Status devDependency Status

Circle CI

Formulon is a Parser for Salesforce Formulas completely written in ECMA Script 2015.

Usage

parse

This method will return a object holding value and its metadata

import { parse } from 'formulon'
Examples
parse('IF(TRUE, "True String", "False String")')
// {
//  type: 'literal',
//  value: 'True String',
//  dataType: 'text',
//  options: { length: 11 }
// }

type: Metadata from the parser (always literal) value: The actual value of the result dataType: The type of the return (currently number, text, or checkbox) options: different options per data type

Data Types

Currently the following data types are supported (naming is taken from the Salesforce Field Types):

  • Number (Integer or Float depending on the options)
  • Text
  • Checkbox (TRUE or FALSE)
Options

Options depend on the data type:

Number
  • Length: Number of digits to the left of the decimal point
  • Scale: Number of digits to the right of the decimal point
Text
  • Length: Number of characters
Checkbox

no options

Errors

Whenever an error occurs, an according object is returned:

parse('IF(TRUE)')
// {
//   type: 'error',
//   errorType: 'ArgumentError',
//   message: "Incorrect number of parameters for function 'IF()'. Expected 3, received 1",
//   function: 'if',
//   expected: 3,
//   received: 1,
// }
Identifiers (Variables)

It's possible to specify formulas that contain variables. In that case pass the value of the variable in as a second argument:

parse('IF(Variable__c, "True String", "False String")', {Variable__c: {type: 'literal', dataType: 'checkbox', value: true}})
// {
//  type: 'literal',
//  value: 'True String',
//  dataType: 'text',
//  options: { length: 11 }
// }

You'll have to provide the variable in the form:

{
  type: 'literal',
  value: <the actual value as a JS type>,
  dataType: <the salesforce field type specified above>,
  options: <salesforce field options>
}

extract

Utility function that returns a list of used variables

extract('IF(Variable__c, Variable__c, AnotherVariable__c)')
// [ 'Variable__c', 'AnotherVariable__c' ]

Keywords

FAQs

Package last updated on 01 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc