Created
February 21, 2020 16:59
-
-
Save painedpineapple/d800c8d165dc6f3c06d2abc284549e8e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[@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