├── .browserlistrc ├── .editorconfig ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── dictionaries │ └── Eric.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── micro-dash-platform.iml ├── misc.xml ├── modules.xml ├── runConfigurations │ ├── Calc_Sizes.xml │ ├── Docs.xml │ ├── E2E.xml │ ├── Lib__Build.xml │ ├── Lib__Test_server.xml │ ├── Lib__dtslint.xml │ └── Tests.xml ├── vcs.xml └── watcherTasks.xml ├── .prettierignore ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── TODO.md ├── angular.json ├── docs └── typedoc │ └── index.html ├── e2e ├── protractor-ci.conf.js ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── projects ├── calc-sizes │ ├── browserslist │ ├── calc-sizes.ts │ ├── src │ │ ├── app │ │ │ ├── array │ │ │ │ ├── chunk.lodash.ts │ │ │ │ ├── chunk.microdash.ts │ │ │ │ ├── compact.lodash.ts │ │ │ │ ├── compact.microdash.ts │ │ │ │ ├── concat.lodash.ts │ │ │ │ ├── concat.microdash.ts │ │ │ │ ├── difference.lodash.ts │ │ │ │ ├── difference.microdash.ts │ │ │ │ ├── flatten.lodash.ts │ │ │ │ ├── flatten.microdash.ts │ │ │ │ ├── initial.lodash.ts │ │ │ │ ├── initial.microdash.ts │ │ │ │ ├── last.lodash.ts │ │ │ │ ├── last.microdash.ts │ │ │ │ ├── pull-all.lodash.ts │ │ │ │ ├── pull-all.microdash.ts │ │ │ │ ├── pull-at.lodash.ts │ │ │ │ ├── pull-at.microdash.ts │ │ │ │ ├── pull.lodash.ts │ │ │ │ ├── pull.microdash.ts │ │ │ │ ├── remove.lodash.ts │ │ │ │ ├── remove.microdash.ts │ │ │ │ ├── sorted-index.lodash.ts │ │ │ │ ├── sorted-index.microdash.ts │ │ │ │ ├── union.lodash.ts │ │ │ │ ├── union.microdash.ts │ │ │ │ ├── uniq-by.lodash.ts │ │ │ │ ├── uniq-by.microdash.ts │ │ │ │ ├── uniq.lodash.ts │ │ │ │ ├── uniq.microdash.ts │ │ │ │ ├── without.lodash.ts │ │ │ │ ├── without.microdash.ts │ │ │ │ ├── zip-object.lodash.ts │ │ │ │ ├── zip-object.microdash.ts │ │ │ │ ├── zip.lodash.ts │ │ │ │ └── zip.microdash.ts │ │ │ ├── collection │ │ │ │ ├── every.lodash.ts │ │ │ │ ├── every.microdash.ts │ │ │ │ ├── filter.lodash.ts │ │ │ │ ├── filter.microdash.ts │ │ │ │ ├── find.lodash.ts │ │ │ │ ├── find.microdash.ts │ │ │ │ ├── flat-map.lodash.ts │ │ │ │ ├── flat-map.microdash.ts │ │ │ │ ├── for-each-right.lodash.ts │ │ │ │ ├── for-each-right.microdash.ts │ │ │ │ ├── for-each.lodash.ts │ │ │ │ ├── for-each.microdash.ts │ │ │ │ ├── group-by.lodash.ts │ │ │ │ ├── group-by.microdash.ts │ │ │ │ ├── includes.lodash.ts │ │ │ │ ├── includes.microdash.ts │ │ │ │ ├── key-by.lodash.ts │ │ │ │ ├── key-by.microdash.ts │ │ │ │ ├── map.lodash.ts │ │ │ │ ├── map.microdash.ts │ │ │ │ ├── reduce-right.lodash.ts │ │ │ │ ├── reduce-right.microdash.ts │ │ │ │ ├── reduce.lodash.ts │ │ │ │ ├── reduce.microdash.ts │ │ │ │ ├── sample.lodash.ts │ │ │ │ ├── sample.microdash.ts │ │ │ │ ├── size.lodash.ts │ │ │ │ ├── size.microdash.ts │ │ │ │ ├── some.lodash.ts │ │ │ │ ├── some.microdash.ts │ │ │ │ ├── sort-by.lodash.ts │ │ │ │ └── sort-by.microdash.ts │ │ │ ├── function │ │ │ │ ├── bind-key.lodash.ts │ │ │ │ ├── bind-key.microdash.ts │ │ │ │ ├── curry.lodash.ts │ │ │ │ ├── curry.microdash.ts │ │ │ │ ├── debounce.lodash.ts │ │ │ │ ├── debounce.microdash.ts │ │ │ │ ├── memoize.lodash.ts │ │ │ │ ├── memoize.microdash.ts │ │ │ │ ├── once.lodash.ts │ │ │ │ ├── once.microdash.ts │ │ │ │ ├── partial.lodash.ts │ │ │ │ ├── partial.microdash.ts │ │ │ │ ├── throttle.lodash.ts │ │ │ │ └── throttle.microdash.ts │ │ │ ├── lang │ │ │ │ ├── cast-array.lodash.ts │ │ │ │ ├── cast-array.microdash.ts │ │ │ │ ├── clone-deep.lodash.ts │ │ │ │ ├── clone-deep.microdash.ts │ │ │ │ ├── clone.lodash.ts │ │ │ │ ├── clone.microdash.ts │ │ │ │ ├── is-boolean.lodash.ts │ │ │ │ ├── is-boolean.microdash.ts │ │ │ │ ├── is-empty.lodash.ts │ │ │ │ ├── is-empty.microdash.ts │ │ │ │ ├── is-equal.lodash.ts │ │ │ │ ├── is-equal.microdash.ts │ │ │ │ ├── is-function.lodash.ts │ │ │ │ ├── is-function.microdash.ts │ │ │ │ ├── is-match.lodash.ts │ │ │ │ ├── is-match.microdash.ts │ │ │ │ ├── is-nil.lodash.ts │ │ │ │ ├── is-nil.microdash.ts │ │ │ │ ├── is-number.lodash.ts │ │ │ │ ├── is-number.microdash.ts │ │ │ │ ├── is-reg-exp.lodash.ts │ │ │ │ ├── is-reg-exp.microdash.ts │ │ │ │ ├── is-string.lodash.ts │ │ │ │ ├── is-string.microdash.ts │ │ │ │ ├── is-undefined.lodash.ts │ │ │ │ ├── is-undefined.microdash.ts │ │ │ │ ├── to-array.lodash.ts │ │ │ │ ├── to-array.microdash.ts │ │ │ │ ├── to-string.lodash.ts │ │ │ │ └── to-string.microdash.ts │ │ │ ├── math │ │ │ │ ├── max-by.lodash.ts │ │ │ │ ├── max-by.microdash.ts │ │ │ │ ├── min-by.lodash.ts │ │ │ │ ├── min-by.microdash.ts │ │ │ │ ├── random.lodash.ts │ │ │ │ ├── random.microdash.ts │ │ │ │ ├── round.lodash.ts │ │ │ │ ├── round.microdash.ts │ │ │ │ ├── sum-by.lodash.ts │ │ │ │ └── sum-by.microdash.ts │ │ │ ├── number │ │ │ │ ├── clamp.lodash.ts │ │ │ │ ├── clamp.microdash.ts │ │ │ │ ├── in-range.lodash.ts │ │ │ │ └── in-range.microdash.ts │ │ │ ├── object │ │ │ │ ├── find-key.lodash.ts │ │ │ │ ├── find-key.microdash.ts │ │ │ │ ├── for-own-right.lodash.ts │ │ │ │ ├── for-own-right.microdash.ts │ │ │ │ ├── for-own.lodash.ts │ │ │ │ ├── for-own.microdash.ts │ │ │ │ ├── functions.lodash.ts │ │ │ │ ├── functions.microdash.ts │ │ │ │ ├── get.lodash.ts │ │ │ │ ├── get.microdash.ts │ │ │ │ ├── invoke.lodash.ts │ │ │ │ ├── invoke.microdash.ts │ │ │ │ ├── keys.lodash.ts │ │ │ │ ├── keys.microdash.ts │ │ │ │ ├── map-values.lodash.ts │ │ │ │ ├── map-values.microdash.ts │ │ │ │ ├── merge.lodash.ts │ │ │ │ ├── merge.microdash.ts │ │ │ │ ├── omit-by.lodash.ts │ │ │ │ ├── omit-by.microdash.ts │ │ │ │ ├── omit.lodash.ts │ │ │ │ ├── omit.microdash.ts │ │ │ │ ├── pick-by.lodash.ts │ │ │ │ ├── pick-by.microdash.ts │ │ │ │ ├── pick.lodash.ts │ │ │ │ ├── pick.microdash.ts │ │ │ │ ├── set.lodash.ts │ │ │ │ ├── set.microdash.ts │ │ │ │ ├── to-pairs.lodash.ts │ │ │ │ ├── to-pairs.microdash.ts │ │ │ │ ├── transform.lodash.ts │ │ │ │ ├── transform.microdash.ts │ │ │ │ ├── update.lodash.ts │ │ │ │ ├── update.microdash.ts │ │ │ │ ├── values.lodash.ts │ │ │ │ └── values.microdash.ts │ │ │ ├── string │ │ │ │ ├── camel-case.lodash.ts │ │ │ │ ├── camel-case.microdash.ts │ │ │ │ ├── capitalize.lodash.ts │ │ │ │ ├── capitalize.microdash.ts │ │ │ │ ├── kebab-case.lodash.ts │ │ │ │ ├── kebab-case.microdash.ts │ │ │ │ ├── lower-first.lodash.ts │ │ │ │ ├── lower-first.microdash.ts │ │ │ │ ├── pad-end.lodash.ts │ │ │ │ ├── pad-end.microdash.ts │ │ │ │ ├── pad-start.lodash.ts │ │ │ │ ├── pad-start.microdash.ts │ │ │ │ ├── pad.lodash.ts │ │ │ │ ├── pad.microdash.ts │ │ │ │ ├── repeat.lodash.ts │ │ │ │ ├── repeat.microdash.ts │ │ │ │ ├── snake-case.lodash.ts │ │ │ │ ├── snake-case.microdash.ts │ │ │ │ ├── to-lower.lodash.ts │ │ │ │ ├── to-lower.microdash.ts │ │ │ │ ├── upper-first.lodash.ts │ │ │ │ ├── upper-first.microdash.ts │ │ │ │ ├── words.lodash.ts │ │ │ │ └── words.microdash.ts │ │ │ └── util │ │ │ │ ├── constant.lodash.ts │ │ │ │ ├── constant.microdash.ts │ │ │ │ ├── flow-right.lodash.ts │ │ │ │ ├── flow-right.microdash.ts │ │ │ │ ├── flow.lodash.ts │ │ │ │ ├── flow.microdash.ts │ │ │ │ ├── identity.lodash.ts │ │ │ │ ├── identity.microdash.ts │ │ │ │ ├── matches.lodash.ts │ │ │ │ ├── matches.microdash.ts │ │ │ │ ├── noop.lodash.ts │ │ │ │ ├── noop.microdash.ts │ │ │ │ ├── range.lodash.ts │ │ │ │ ├── range.microdash.ts │ │ │ │ ├── times.lodash.ts │ │ │ │ ├── times.microdash.ts │ │ │ │ ├── unique-id.lodash.ts │ │ │ │ └── unique-id.microdash.ts │ │ ├── index.html │ │ └── main.ts │ └── tsconfig.app.json └── micro-dash │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── array │ │ │ ├── chunk.spec.ts │ │ │ ├── chunk.ts │ │ │ ├── compact.spec.ts │ │ │ ├── compact.ts │ │ │ ├── concat.spec.ts │ │ │ ├── concat.ts │ │ │ ├── difference.spec.ts │ │ │ ├── difference.ts │ │ │ ├── flatten.spec.ts │ │ │ ├── flatten.ts │ │ │ ├── index.ts │ │ │ ├── initial.spec.ts │ │ │ ├── initial.ts │ │ │ ├── last.spec.ts │ │ │ ├── last.ts │ │ │ ├── pull-all.spec.ts │ │ │ ├── pull-all.ts │ │ │ ├── pull-at.spec.ts │ │ │ ├── pull-at.ts │ │ │ ├── pull.spec.ts │ │ │ ├── pull.ts │ │ │ ├── remove.spec.ts │ │ │ ├── remove.ts │ │ │ ├── sorted-index.spec.ts │ │ │ ├── sorted-index.ts │ │ │ ├── union.spec.ts │ │ │ ├── union.ts │ │ │ ├── uniq-by.spec.ts │ │ │ ├── uniq-by.ts │ │ │ ├── uniq.spec.ts │ │ │ ├── uniq.ts │ │ │ ├── without.spec.ts │ │ │ ├── without.ts │ │ │ ├── zip-object.spec.ts │ │ │ ├── zip-object.ts │ │ │ ├── zip.spec.ts │ │ │ └── zip.ts │ │ ├── collection │ │ │ ├── every.spec.ts │ │ │ ├── every.ts │ │ │ ├── filter.spec.ts │ │ │ ├── filter.ts │ │ │ ├── find.spec.ts │ │ │ ├── find.ts │ │ │ ├── flat-map.spec.ts │ │ │ ├── flat-map.ts │ │ │ ├── for-each-right.spec.ts │ │ │ ├── for-each-right.ts │ │ │ ├── for-each.spec.ts │ │ │ ├── for-each.ts │ │ │ ├── group-by.spec.ts │ │ │ ├── group-by.ts │ │ │ ├── includes.spec.ts │ │ │ ├── includes.ts │ │ │ ├── index.ts │ │ │ ├── key-by.spec.ts │ │ │ ├── key-by.ts │ │ │ ├── map.spec.ts │ │ │ ├── map.ts │ │ │ ├── reduce-right.spec.ts │ │ │ ├── reduce-right.ts │ │ │ ├── reduce-utils.ts │ │ │ ├── reduce.spec.ts │ │ │ ├── reduce.ts │ │ │ ├── sample.spec.ts │ │ │ ├── sample.ts │ │ │ ├── size.spec.ts │ │ │ ├── size.ts │ │ │ ├── some.spec.ts │ │ │ ├── some.ts │ │ │ ├── sort-by.spec.ts │ │ │ └── sort-by.ts │ │ ├── function │ │ │ ├── bind-key.spec.ts │ │ │ ├── bind-key.ts │ │ │ ├── curry.spec.ts │ │ │ ├── curry.ts │ │ │ ├── debounce.spec.ts │ │ │ ├── debounce.ts │ │ │ ├── index.ts │ │ │ ├── memoize.spec.ts │ │ │ ├── memoize.ts │ │ │ ├── once.spec.ts │ │ │ ├── once.ts │ │ │ ├── partial.spec.ts │ │ │ ├── partial.ts │ │ │ ├── throttle.spec.ts │ │ │ └── throttle.ts │ │ ├── interfaces.ts │ │ ├── lang │ │ │ ├── cast-array.spec.ts │ │ │ ├── cast-array.ts │ │ │ ├── clone-deep.spec.ts │ │ │ ├── clone-deep.ts │ │ │ ├── clone.spec.ts │ │ │ ├── clone.ts │ │ │ ├── index.ts │ │ │ ├── is-boolean.spec.ts │ │ │ ├── is-boolean.ts │ │ │ ├── is-empty.spec.ts │ │ │ ├── is-empty.ts │ │ │ ├── is-equal.spec.ts │ │ │ ├── is-equal.ts │ │ │ ├── is-function.spec.ts │ │ │ ├── is-function.ts │ │ │ ├── is-match.spec.ts │ │ │ ├── is-match.ts │ │ │ ├── is-nil.spec.ts │ │ │ ├── is-nil.ts │ │ │ ├── is-number.spec.ts │ │ │ ├── is-number.ts │ │ │ ├── is-reg-exp.spec.ts │ │ │ ├── is-reg-exp.ts │ │ │ ├── is-string.spec.ts │ │ │ ├── is-string.ts │ │ │ ├── is-undefined.spec.ts │ │ │ ├── is-undefined.ts │ │ │ ├── to-array.spec.ts │ │ │ ├── to-array.ts │ │ │ ├── to-string.spec.ts │ │ │ └── to-string.ts │ │ ├── math │ │ │ ├── extreme-utils.ts │ │ │ ├── index.ts │ │ │ ├── max-by.spec.ts │ │ │ ├── max-by.ts │ │ │ ├── min-by.spec.ts │ │ │ ├── min-by.ts │ │ │ ├── random.spec.ts │ │ │ ├── random.ts │ │ │ ├── round.spec.ts │ │ │ ├── round.ts │ │ │ ├── sum-by.spec.ts │ │ │ └── sum-by.ts │ │ ├── number │ │ │ ├── clamp.spec.ts │ │ │ ├── clamp.ts │ │ │ ├── in-range.spec.ts │ │ │ ├── in-range.ts │ │ │ └── index.ts │ │ ├── object │ │ │ ├── find-key.spec.ts │ │ │ ├── find-key.ts │ │ │ ├── for-own-right.spec.ts │ │ │ ├── for-own-right.ts │ │ │ ├── for-own.spec.ts │ │ │ ├── for-own.ts │ │ │ ├── functions.spec.ts │ │ │ ├── functions.ts │ │ │ ├── get.spec.ts │ │ │ ├── get.ts │ │ │ ├── index.ts │ │ │ ├── invoke.spec.ts │ │ │ ├── invoke.ts │ │ │ ├── keys.spec.ts │ │ │ ├── keys.ts │ │ │ ├── map-values.spec.ts │ │ │ ├── map-values.ts │ │ │ ├── merge.spec.ts │ │ │ ├── merge.ts │ │ │ ├── omit-by.spec.ts │ │ │ ├── omit-by.ts │ │ │ ├── omit.spec.ts │ │ │ ├── omit.ts │ │ │ ├── pick-by.spec.ts │ │ │ ├── pick-by.ts │ │ │ ├── pick.spec.ts │ │ │ ├── pick.ts │ │ │ ├── set.spec.ts │ │ │ ├── set.ts │ │ │ ├── to-pairs.spec.ts │ │ │ ├── to-pairs.ts │ │ │ ├── transform.spec.ts │ │ │ ├── transform.ts │ │ │ ├── update.spec.ts │ │ │ ├── update.ts │ │ │ ├── values.spec.ts │ │ │ └── values.ts │ │ ├── string │ │ │ ├── camel-case.spec.ts │ │ │ ├── camel-case.ts │ │ │ ├── capitalize.spec.ts │ │ │ ├── capitalize.ts │ │ │ ├── index.ts │ │ │ ├── kebab-case.spec.ts │ │ │ ├── kebab-case.ts │ │ │ ├── lower-first.spec.ts │ │ │ ├── lower-first.ts │ │ │ ├── pad-end.spec.ts │ │ │ ├── pad-end.ts │ │ │ ├── pad-start.spec.ts │ │ │ ├── pad-start.ts │ │ │ ├── pad.spec.ts │ │ │ ├── pad.ts │ │ │ ├── repeat.spec.ts │ │ │ ├── repeat.ts │ │ │ ├── snake-case.spec.ts │ │ │ ├── snake-case.ts │ │ │ ├── to-lower.spec.ts │ │ │ ├── to-lower.ts │ │ │ ├── upper-first.spec.ts │ │ │ ├── upper-first.ts │ │ │ ├── words.spec.ts │ │ │ └── words.ts │ │ └── util │ │ │ ├── constant.spec.ts │ │ │ ├── constant.ts │ │ │ ├── flow-right.spec.ts │ │ │ ├── flow-right.ts │ │ │ ├── flow.spec.ts │ │ │ ├── flow.ts │ │ │ ├── identity.spec.ts │ │ │ ├── identity.ts │ │ │ ├── index.ts │ │ │ ├── matches.spec.ts │ │ │ ├── matches.ts │ │ │ ├── noop.spec.ts │ │ │ ├── noop.ts │ │ │ ├── property.spec.ts │ │ │ ├── property.ts │ │ │ ├── range.spec.ts │ │ │ ├── range.ts │ │ │ ├── times.spec.ts │ │ │ ├── times.ts │ │ │ ├── unique-id.spec.ts │ │ │ └── unique-id.ts │ ├── public-api.ts │ ├── test-helpers │ │ └── test-utils.ts │ ├── test.ts │ └── typing-tests │ │ ├── array │ │ ├── concat.dts-spec.ts │ │ ├── difference.dts-spec.ts │ │ ├── initial.dts-spec.ts │ │ ├── union.dts-spec.ts │ │ ├── zip-object.dts-spec.ts │ │ └── zip.dts-spec.ts │ │ ├── collection │ │ ├── filter.dts-spec.ts │ │ ├── find.dts-spec.ts │ │ ├── flat-map.dts-spec.ts │ │ ├── group-by.dts-spec.ts │ │ └── key-by.dts-spec.ts │ │ ├── function │ │ ├── bind-key.dts-spec.ts │ │ ├── debounce.dts-spec.ts │ │ ├── once.dts-spec.ts │ │ └── partial.dts-spec.ts │ │ ├── index.d.ts │ │ ├── lang │ │ └── to-array.dts-spec.ts │ │ ├── object │ │ ├── find-key.dts-spec.ts │ │ ├── functions.dts-spec.ts │ │ ├── get.dts-spec.ts │ │ ├── invoke.dts-spec.ts │ │ ├── keys.dts-spec.ts │ │ ├── map-values.dts-spec.ts │ │ ├── omit-by.dts-spec.ts │ │ ├── pick-by.dts-spec.ts │ │ └── to-pairs.dts-spec.ts │ │ └── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── tslint.json ├── src ├── app │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ └── package.json ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── standard-version-postbump.ts ├── tsconfig.app.json ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.spec.json ├── tslint.json └── yarn.lock /.browserlistrc: -------------------------------------------------------------------------------- 1 | # This file is used by the build system to adjust CSS and JS output to support the specified browsers below. 2 | # For additional information regarding the format and rule options, please see: 3 | # https://github.com/browserslist/browserslist#queries 4 | 5 | # For the full list of supported browsers by the Angular framework, please see: 6 | # https://angular.io/guide/browser-support 7 | 8 | # You can see what browsers were selected by your queries by running: 9 | # npx browserslist 10 | 11 | last 1 Chrome version 12 | last 1 Firefox version 13 | last 2 Edge major versions 14 | last 2 Safari major version 15 | last 2 iOS major versions 16 | Firefox ESR 17 | not IE 9-11 # For IE 9-11 support, remove 'not'. 18 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see https://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.ts] 12 | quote_type = single 13 | 14 | [*.md] 15 | max_line_length = off 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /tmp 6 | /out-tsc 7 | # Only exists if Bazel was run 8 | /bazel-out 9 | 10 | # dependencies 11 | /node_modules 12 | 13 | # profiling files 14 | chrome-profiler-events.json 15 | speed-measure-plugin.json 16 | 17 | # IDEs and editors 18 | .project 19 | .classpath 20 | .c9/ 21 | *.launch 22 | .settings/ 23 | *.sublime-workspace 24 | .idea/workspace.xml 25 | .idea/shelf/ 26 | 27 | # IDE - VSCode 28 | .vscode/* 29 | !.vscode/settings.json 30 | !.vscode/tasks.json 31 | !.vscode/launch.json 32 | !.vscode/extensions.json 33 | .history/* 34 | 35 | # misc 36 | /.sass-cache 37 | /connect.lock 38 | /coverage 39 | /libpeerconnection.log 40 | npm-debug.log 41 | yarn-error.log 42 | testem.log 43 | /typings 44 | 45 | # System Files 46 | .DS_Store 47 | Thumbs.db 48 | -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/dictionaries/Eric.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | buildchain 5 | iteratee 6 | iteratees 7 | lodash 8 | minified 9 | polyfilled 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/micro-dash-platform.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/runConfigurations/Calc_Sizes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |