Use third-party libraries in Apps
Built-in libraries
Library
What for
Docs
Version
// loadash
return _.chunk(['a', 'b', 'c', 'd'], 2);
// => [['a', 'b'], ['c', 'd']]
// uuid
return uuid.v4();
// => 3965f3d4-8dd8-4785-9756-0ee98d91238d
// numbro
return numbro(1000).format({thousandSeparated: true});
// => 1,000
// Papaparse
return Papa.parse("name|age\nJohn Doe|30\nJane Doe|25", {delimiter: "|"})
// => {"data":[["name","age"],["John Doe","30"],["Jane Doe","25"]],"errors":[],"meta":{"delimiter":"|","linebreak":"\n","aborted":false,"truncated":false,"cursor":32}}Import third-party libraries
Import / bind at the app level


Import/bind at the workspace level

Last updated
Was this helpful?
