Skip to content

Instantly share code, notes, and snippets.

@painedpineapple
Created February 21, 2020 16:59
Show Gist options
  • Save painedpineapple/d800c8d165dc6f3c06d2abc284549e8e to your computer and use it in GitHub Desktop.
Save painedpineapple/d800c8d165dc6f3c06d2abc284549e8e to your computer and use it in GitHub Desktop.
[@bs.module] external startCase: string => string = "lodash.startcase";
[@bs.module] external unique: array('a) => array('a) = "lodash.uniq";
[@bs.module]
external sortby: (array('a), array('a => 'b)) => array('a) =
"lodash.sortby";
[@bs.module]
external difference: (array('a), array('a)) => array('a) =
"lodash.difference";
[@bs.module] external isEqual: ('a, 'a) => bool = "lodash.isequal";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment