{"version":3,"sources":["../src/utils/compose.ts"],"sourcesContent":["/**\n * compose a set of functions over an argument\n *\n * @author Nick Krause\n * @license MIT\n */\n\nconst compose =\n  <T = any>(...fns: Array<(v: T) => any>) =>\n    (x: T) =>\n      fns.reduceRight((v, f) => f(v), x)\n\nexport { compose }\n"],"mappings":";AAAA,AAOA,IAAM,UACJ,IAAa,QACX,CAAC,MACC,IAAI,YAAY,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC;","names":[]}