Haraka 2.8.27 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.yaml +2 -10
- package/Changes.md +107 -2
- package/Dockerfile +1 -1
- package/Plugins.md +7 -4
- package/README.md +2 -6
- package/bin/dkimverify +11 -6
- package/config/dkim_verify.ini +7 -0
- package/config/outbound.ini +0 -7
- package/config/plugins +1 -1
- package/config/smtp.ini +1 -1
- package/config/smtp_forward.ini +2 -8
- package/config/smtp_proxy.ini +0 -6
- package/config/spamassassin.ini +10 -4
- package/config/tls.ini +19 -0
- package/connection.js +203 -237
- package/contrib/plugin2npm.sh +3 -3
- package/coverage/lcov.info +13863 -0
- package/coverage/tmp/coverage-42958-1658373250585-0.json +1 -0
- package/coverage/tmp/coverage-42961-1658373250529-0.json +1 -0
- package/dkim.js +148 -111
- package/docs/Body.md +1 -22
- package/docs/CoreConfig.md +2 -2
- package/docs/Header.md +1 -47
- package/docs/Outbound.md +16 -26
- package/docs/Plugins.md +4 -0
- package/docs/plugins/dkim_verify.md +6 -1
- package/docs/plugins/queue/smtp_forward.md +1 -1
- package/docs/plugins/relay_force_routing.md +11 -0
- package/docs/plugins/spamassassin.md +26 -0
- package/docs/plugins/tls.md +22 -0
- package/endpoint.js +1 -1
- package/haraka.js +1 -1
- package/host_pool.js +8 -12
- package/http/html/404.html +62 -0
- package/http/html/index.html +7 -5
- package/http/package.json +16 -9
- package/logger.js +25 -32
- package/outbound/client_pool.js +11 -153
- package/outbound/config.js +90 -6
- package/outbound/hmail.js +153 -147
- package/outbound/index.js +13 -25
- package/outbound/mx_lookup.js +15 -8
- package/outbound/queue.js +8 -12
- package/outbound/timer_queue.js +2 -4
- package/outbound/tls.js +20 -19
- package/outbound/todo.js +1 -0
- package/package.json +52 -48
- package/plugins/auth/auth_base.js +39 -63
- package/plugins/auth/auth_bridge.js +3 -4
- package/plugins/auth/auth_proxy.js +16 -16
- package/plugins/auth/auth_vpopmaild.js +30 -37
- package/plugins/auth/flat_file.js +9 -13
- package/plugins/avg.js +9 -11
- package/plugins/backscatterer.js +1 -1
- package/plugins/block_me.js +2 -6
- package/plugins/bounce.js +106 -124
- package/plugins/clamd.js +59 -63
- package/plugins/data.signatures.js +6 -6
- package/plugins/data.uribl.js +1 -415
- package/plugins/delay_deny.js +19 -20
- package/plugins/dkim_sign.js +56 -62
- package/plugins/dkim_verify.js +26 -13
- package/plugins/dns_list_base.js +43 -42
- package/plugins/dnsbl.js +41 -46
- package/plugins/dnswl.js +23 -26
- package/plugins/early_talker.js +24 -28
- package/plugins/esets.js +8 -11
- package/plugins/greylist.js +161 -190
- package/plugins/helo.checks.js +175 -197
- package/plugins/mail_from.is_resolvable.js +38 -38
- package/plugins/messagesniffer.js +33 -40
- package/plugins/prevent_credential_leaks.js +7 -5
- package/plugins/process_title.js +16 -17
- package/plugins/queue/deliver.js +2 -2
- package/plugins/queue/lmtp.js +5 -6
- package/plugins/queue/qmail-queue.js +11 -13
- package/plugins/queue/quarantine.js +25 -34
- package/plugins/queue/rabbitmq.js +3 -2
- package/plugins/queue/rabbitmq_amqplib.js +9 -9
- package/plugins/queue/smtp_bridge.js +5 -4
- package/plugins/queue/smtp_forward.js +81 -89
- package/plugins/queue/smtp_proxy.js +21 -22
- package/plugins/queue/test.js +2 -1
- package/plugins/rcpt_to.host_list_base.js +20 -30
- package/plugins/rcpt_to.in_host_list.js +12 -14
- package/plugins/rcpt_to.max_count.js +7 -5
- package/plugins/record_envelope_addresses.js +4 -6
- package/plugins/relay.js +67 -74
- package/plugins/reseed_rng.js +1 -2
- package/plugins/spamassassin.js +83 -89
- package/plugins/status.js +2 -3
- package/plugins/tarpit.js +8 -11
- package/plugins/tls.js +17 -17
- package/plugins/toobusy.js +6 -8
- package/plugins/xclient.js +14 -25
- package/plugins.js +28 -28
- package/rfc1869.js +2 -2
- package/run_tests +3 -2
- package/server.js +9 -21
- package/smtp_client.js +138 -215
- package/tests/config/smtp_forward.ini +0 -6
- package/tests/config/tls/ec.pem +23 -0
- package/tests/config/tls.ini +3 -0
- package/tests/connection.js +4 -0
- package/tests/fixtures/line_socket.js +1 -1
- package/tests/fixtures/util_hmailitem.js +5 -7
- package/tests/fixtures/vm_harness.js +2 -2
- package/tests/host_pool.js +13 -14
- package/tests/installation/plugins/inherits.js +1 -2
- package/tests/logger.js +2 -2
- package/{http/node_modules/bower/lib/node_modules/extsprintf/.gitmodules → tests/loud/config/dhparams.pem} +0 -0
- package/tests/{config → loud/config}/tls/goobered.pem +0 -0
- package/tests/loud/config/tls.ini +43 -0
- package/tests/outbound/index.js +26 -1
- package/tests/plugins/bounce.js +6 -8
- package/tests/plugins/dkim_signer.js +7 -7
- package/tests/plugins/dns_list_base.js +7 -7
- package/tests/plugins/helo.checks.js +1 -1
- package/tests/plugins/mail_from.is_resolvable.js +10 -54
- package/tests/plugins/queue/smtp_forward.js +11 -11
- package/tests/plugins/rcpt_to.host_list_base.js +1 -1
- package/tests/plugins/rcpt_to.in_host_list.js +1 -1
- package/tests/plugins/relay.js +11 -0
- package/tests/plugins/spamassassin.js +14 -12
- package/tests/plugins.js +24 -25
- package/tests/queue/multibyte +0 -0
- package/tests/queue/plain +0 -0
- package/tests/rfc1869.js +4 -1
- package/tests/server.js +25 -12
- package/tests/smtp_client/auth.js +4 -14
- package/tests/smtp_client/basic.js +5 -15
- package/tests/smtp_client.js +7 -3
- package/tests/tls_socket.js +105 -14
- package/tests/transaction.js +72 -19
- package/tls_socket.js +127 -106
- package/transaction.js +8 -9
- package/attachment_stream.js +0 -118
- package/bin/spf +0 -48
- package/chunkemitter.js +0 -75
- package/config/data.uribl.excludes +0 -202
- package/config/data.uribl.ini +0 -37
- package/config/spf.ini +0 -1
- package/docs/plugins/attachment.md +0 -92
- package/docs/plugins/data.uribl.md +0 -120
- package/docs/plugins/spf.md +0 -142
- package/http/Gruntfile.js +0 -72
- package/http/bower.json +0 -24
- package/http/node_modules/abbrev/LICENSE +0 -46
- package/http/node_modules/abbrev/README.md +0 -23
- package/http/node_modules/abbrev/abbrev.js +0 -61
- package/http/node_modules/abbrev/package.json +0 -57
- package/http/node_modules/accepts/HISTORY.md +0 -236
- package/http/node_modules/accepts/LICENSE +0 -23
- package/http/node_modules/accepts/README.md +0 -142
- package/http/node_modules/accepts/index.js +0 -238
- package/http/node_modules/accepts/package.json +0 -86
- package/http/node_modules/ansi-regex/index.js +0 -14
- package/http/node_modules/ansi-regex/license +0 -9
- package/http/node_modules/ansi-regex/package.json +0 -85
- package/http/node_modules/ansi-regex/readme.md +0 -87
- package/http/node_modules/ansi-styles/index.d.ts +0 -345
- package/http/node_modules/ansi-styles/index.js +0 -163
- package/http/node_modules/ansi-styles/license +0 -9
- package/http/node_modules/ansi-styles/package.json +0 -88
- package/http/node_modules/ansi-styles/readme.md +0 -152
- package/http/node_modules/argparse/CHANGELOG.md +0 -185
- package/http/node_modules/argparse/LICENSE +0 -21
- package/http/node_modules/argparse/README.md +0 -257
- package/http/node_modules/argparse/index.js +0 -3
- package/http/node_modules/argparse/lib/action/append/constant.js +0 -47
- package/http/node_modules/argparse/lib/action/append.js +0 -53
- package/http/node_modules/argparse/lib/action/count.js +0 -40
- package/http/node_modules/argparse/lib/action/help.js +0 -47
- package/http/node_modules/argparse/lib/action/store/constant.js +0 -43
- package/http/node_modules/argparse/lib/action/store/false.js +0 -27
- package/http/node_modules/argparse/lib/action/store/true.js +0 -26
- package/http/node_modules/argparse/lib/action/store.js +0 -50
- package/http/node_modules/argparse/lib/action/subparsers.js +0 -149
- package/http/node_modules/argparse/lib/action/version.js +0 -47
- package/http/node_modules/argparse/lib/action.js +0 -146
- package/http/node_modules/argparse/lib/action_container.js +0 -482
- package/http/node_modules/argparse/lib/argparse.js +0 -14
- package/http/node_modules/argparse/lib/argument/error.js +0 -50
- package/http/node_modules/argparse/lib/argument/exclusive.js +0 -54
- package/http/node_modules/argparse/lib/argument/group.js +0 -75
- package/http/node_modules/argparse/lib/argument_parser.js +0 -1161
- package/http/node_modules/argparse/lib/const.js +0 -21
- package/http/node_modules/argparse/lib/help/added_formatters.js +0 -87
- package/http/node_modules/argparse/lib/help/formatter.js +0 -795
- package/http/node_modules/argparse/lib/namespace.js +0 -76
- package/http/node_modules/argparse/lib/utils.js +0 -57
- package/http/node_modules/argparse/package.json +0 -70
- package/http/node_modules/arr-diff/LICENSE +0 -21
- package/http/node_modules/arr-diff/README.md +0 -130
- package/http/node_modules/arr-diff/index.js +0 -47
- package/http/node_modules/arr-diff/package.json +0 -109
- package/http/node_modules/arr-flatten/LICENSE +0 -21
- package/http/node_modules/arr-flatten/README.md +0 -86
- package/http/node_modules/arr-flatten/index.js +0 -22
- package/http/node_modules/arr-flatten/package.json +0 -113
- package/http/node_modules/arr-union/LICENSE +0 -21
- package/http/node_modules/arr-union/README.md +0 -99
- package/http/node_modules/arr-union/index.js +0 -29
- package/http/node_modules/arr-union/package.json +0 -108
- package/http/node_modules/array-each/LICENSE +0 -21
- package/http/node_modules/array-each/README.md +0 -84
- package/http/node_modules/array-each/index.js +0 -46
- package/http/node_modules/array-each/package.json +0 -81
- package/http/node_modules/array-flatten/LICENSE +0 -21
- package/http/node_modules/array-flatten/README.md +0 -43
- package/http/node_modules/array-flatten/array-flatten.js +0 -64
- package/http/node_modules/array-flatten/package.json +0 -64
- package/http/node_modules/array-slice/LICENSE +0 -21
- package/http/node_modules/array-slice/README.md +0 -82
- package/http/node_modules/array-slice/index.js +0 -33
- package/http/node_modules/array-slice/package.json +0 -85
- package/http/node_modules/array-unique/LICENSE +0 -21
- package/http/node_modules/array-unique/README.md +0 -77
- package/http/node_modules/array-unique/index.js +0 -43
- package/http/node_modules/array-unique/package.json +0 -96
- package/http/node_modules/assign-symbols/LICENSE +0 -21
- package/http/node_modules/assign-symbols/README.md +0 -73
- package/http/node_modules/assign-symbols/index.js +0 -40
- package/http/node_modules/assign-symbols/package.json +0 -71
- package/http/node_modules/async/CHANGELOG.md +0 -125
- package/http/node_modules/async/LICENSE +0 -19
- package/http/node_modules/async/README.md +0 -1877
- package/http/node_modules/async/dist/async.js +0 -1265
- package/http/node_modules/async/dist/async.min.js +0 -2
- package/http/node_modules/async/lib/async.js +0 -1265
- package/http/node_modules/async/package.json +0 -113
- package/http/node_modules/atob/LICENSE +0 -230
- package/http/node_modules/atob/LICENSE.DOCS +0 -319
- package/http/node_modules/atob/README.md +0 -49
- package/http/node_modules/atob/bin/atob.js +0 -6
- package/http/node_modules/atob/bower.json +0 -24
- package/http/node_modules/atob/browser-atob.js +0 -44
- package/http/node_modules/atob/node-atob.js +0 -7
- package/http/node_modules/atob/package.json +0 -53
- package/http/node_modules/atob/test.js +0 -18
- package/http/node_modules/balanced-match/LICENSE.md +0 -21
- package/http/node_modules/balanced-match/README.md +0 -91
- package/http/node_modules/balanced-match/index.js +0 -59
- package/http/node_modules/balanced-match/package.json +0 -77
- package/http/node_modules/base/LICENSE +0 -21
- package/http/node_modules/base/README.md +0 -491
- package/http/node_modules/base/index.js +0 -435
- package/http/node_modules/base/package.json +0 -164
- package/http/node_modules/body-parser/HISTORY.md +0 -609
- package/http/node_modules/body-parser/LICENSE +0 -23
- package/http/node_modules/body-parser/README.md +0 -443
- package/http/node_modules/body-parser/index.js +0 -157
- package/http/node_modules/body-parser/lib/read.js +0 -181
- package/http/node_modules/body-parser/lib/types/json.js +0 -230
- package/http/node_modules/body-parser/lib/types/raw.js +0 -101
- package/http/node_modules/body-parser/lib/types/text.js +0 -121
- package/http/node_modules/body-parser/lib/types/urlencoded.js +0 -284
- package/http/node_modules/body-parser/package.json +0 -91
- package/http/node_modules/bower/CHANGELOG.md +0 -674
- package/http/node_modules/bower/LICENSE +0 -19
- package/http/node_modules/bower/README.md +0 -200
- package/http/node_modules/bower/bin/bower +0 -3
- package/http/node_modules/bower/lib/bin/bower.js +0 -150
- package/http/node_modules/bower/lib/commands/cache/clean.js +0 -195
- package/http/node_modules/bower/lib/commands/cache/list.js +0 -42
- package/http/node_modules/bower/lib/commands/help.js +0 -41
- package/http/node_modules/bower/lib/commands/home.js +0 -59
- package/http/node_modules/bower/lib/commands/index.js +0 -82
- package/http/node_modules/bower/lib/commands/info.js +0 -73
- package/http/node_modules/bower/lib/commands/init.js +0 -342
- package/http/node_modules/bower/lib/commands/install.js +0 -55
- package/http/node_modules/bower/lib/commands/link.js +0 -88
- package/http/node_modules/bower/lib/commands/list.js +0 -185
- package/http/node_modules/bower/lib/commands/login.js +0 -155
- package/http/node_modules/bower/lib/commands/lookup.js +0 -37
- package/http/node_modules/bower/lib/commands/prune.js +0 -60
- package/http/node_modules/bower/lib/commands/register.js +0 -100
- package/http/node_modules/bower/lib/commands/search.js +0 -39
- package/http/node_modules/bower/lib/commands/uninstall.js +0 -132
- package/http/node_modules/bower/lib/commands/unregister.js +0 -90
- package/http/node_modules/bower/lib/commands/update.js +0 -39
- package/http/node_modules/bower/lib/commands/version.js +0 -210
- package/http/node_modules/bower/lib/config.js +0 -63
- package/http/node_modules/bower/lib/core/Manager.js +0 -1284
- package/http/node_modules/bower/lib/core/PackageRepository.js +0 -304
- package/http/node_modules/bower/lib/core/Project.js +0 -1033
- package/http/node_modules/bower/lib/core/ResolveCache.js +0 -440
- package/http/node_modules/bower/lib/core/resolverFactory.js +0 -279
- package/http/node_modules/bower/lib/core/resolvers/FsResolver.js +0 -154
- package/http/node_modules/bower/lib/core/resolvers/GitFsResolver.js +0 -102
- package/http/node_modules/bower/lib/core/resolvers/GitHubResolver.js +0 -191
- package/http/node_modules/bower/lib/core/resolvers/GitRemoteResolver.js +0 -330
- package/http/node_modules/bower/lib/core/resolvers/GitResolver.js +0 -434
- package/http/node_modules/bower/lib/core/resolvers/Resolver.js +0 -252
- package/http/node_modules/bower/lib/core/resolvers/SvnResolver.js +0 -491
- package/http/node_modules/bower/lib/core/resolvers/UrlResolver.js +0 -323
- package/http/node_modules/bower/lib/core/resolvers/index.js +0 -8
- package/http/node_modules/bower/lib/core/resolvers/pluginResolverFactory.js +0 -385
- package/http/node_modules/bower/lib/core/scripts.js +0 -122
- package/http/node_modules/bower/lib/index.js +0 -19
- package/http/node_modules/bower/lib/node_modules/.yarn-integrity +0 -1000
- package/http/node_modules/bower/lib/node_modules/abbrev/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/abbrev/README.md +0 -23
- package/http/node_modules/bower/lib/node_modules/abbrev/abbrev.js +0 -61
- package/http/node_modules/bower/lib/node_modules/abbrev/package.json +0 -21
- package/http/node_modules/bower/lib/node_modules/ajv/.tonic_example.js +0 -20
- package/http/node_modules/bower/lib/node_modules/ajv/LICENSE +0 -22
- package/http/node_modules/bower/lib/node_modules/ajv/README.md +0 -1213
- package/http/node_modules/bower/lib/node_modules/ajv/dist/ajv.bundle.js +0 -8023
- package/http/node_modules/bower/lib/node_modules/ajv/dist/ajv.min.js +0 -6
- package/http/node_modules/bower/lib/node_modules/ajv/dist/ajv.min.js.map +0 -1
- package/http/node_modules/bower/lib/node_modules/ajv/dist/nodent.min.js +0 -8
- package/http/node_modules/bower/lib/node_modules/ajv/dist/regenerator.min.js +0 -32
- package/http/node_modules/bower/lib/node_modules/ajv/lib/ajv.d.ts +0 -284
- package/http/node_modules/bower/lib/node_modules/ajv/lib/ajv.js +0 -420
- package/http/node_modules/bower/lib/node_modules/ajv/lib/async.js +0 -218
- package/http/node_modules/bower/lib/node_modules/ajv/lib/cache.js +0 -26
- package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/_rules.js +0 -28
- package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/equal.js +0 -45
- package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/formats.js +0 -164
- package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/index.js +0 -390
- package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/resolve.js +0 -267
- package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/rules.js +0 -40
- package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/schema_obj.js +0 -9
- package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/ucs2length.js +0 -20
- package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/util.js +0 -257
- package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/validation_error.js +0 -14
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/_limit.jst +0 -49
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/_limitItems.jst +0 -10
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/_limitLength.jst +0 -10
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/_limitProperties.jst +0 -10
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/allOf.jst +0 -34
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/anyOf.jst +0 -48
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/coerce.def +0 -61
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/custom.jst +0 -184
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/defaults.def +0 -32
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/definitions.def +0 -182
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/dependencies.jst +0 -69
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/enum.jst +0 -30
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/errors.def +0 -185
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/format.jst +0 -100
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/items.jst +0 -101
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/missing.def +0 -34
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/multipleOf.jst +0 -20
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/not.jst +0 -43
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/oneOf.jst +0 -44
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/pattern.jst +0 -14
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/properties.jst +0 -319
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/ref.jst +0 -86
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/required.jst +0 -96
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/uniqueItems.jst +0 -38
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/v5/_formatLimit.jst +0 -116
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/v5/constant.jst +0 -10
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/v5/patternRequired.jst +0 -28
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/v5/switch.jst +0 -73
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/validate.jst +0 -210
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/README.md +0 -3
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/_formatLimit.js +0 -176
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/_limit.js +0 -124
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/_limitItems.js +0 -76
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/_limitLength.js +0 -81
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/_limitProperties.js +0 -76
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/allOf.js +0 -43
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/anyOf.js +0 -65
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/constant.js +0 -52
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/custom.js +0 -220
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/dependencies.js +0 -147
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/enum.js +0 -65
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/format.js +0 -138
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/items.js +0 -144
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/multipleOf.js +0 -76
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/not.js +0 -83
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/oneOf.js +0 -76
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/pattern.js +0 -74
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/patternRequired.js +0 -51
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/properties.js +0 -445
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/ref.js +0 -119
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/required.js +0 -249
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/switch.js +0 -128
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/uniqueItems.js +0 -71
- package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/validate.js +0 -375
- package/http/node_modules/bower/lib/node_modules/ajv/lib/keyword.js +0 -129
- package/http/node_modules/bower/lib/node_modules/ajv/lib/refs/json-schema-draft-04.json +0 -150
- package/http/node_modules/bower/lib/node_modules/ajv/lib/refs/json-schema-v5.json +0 -328
- package/http/node_modules/bower/lib/node_modules/ajv/lib/v5.js +0 -52
- package/http/node_modules/bower/lib/node_modules/ajv/package.json +0 -104
- package/http/node_modules/bower/lib/node_modules/ajv/scripts/.eslintrc.yml +0 -3
- package/http/node_modules/bower/lib/node_modules/ajv/scripts/bundle.js +0 -54
- package/http/node_modules/bower/lib/node_modules/ajv/scripts/compile-dots.js +0 -73
- package/http/node_modules/bower/lib/node_modules/ajv/scripts/info +0 -10
- package/http/node_modules/bower/lib/node_modules/ajv/scripts/prepare-tests +0 -9
- package/http/node_modules/bower/lib/node_modules/ajv/scripts/travis-gh-pages +0 -23
- package/http/node_modules/bower/lib/node_modules/align-text/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/align-text/README.md +0 -236
- package/http/node_modules/bower/lib/node_modules/align-text/index.js +0 -52
- package/http/node_modules/bower/lib/node_modules/align-text/package.json +0 -52
- package/http/node_modules/bower/lib/node_modules/amdefine/LICENSE +0 -58
- package/http/node_modules/bower/lib/node_modules/amdefine/README.md +0 -171
- package/http/node_modules/bower/lib/node_modules/amdefine/amdefine.js +0 -301
- package/http/node_modules/bower/lib/node_modules/amdefine/intercept.js +0 -36
- package/http/node_modules/bower/lib/node_modules/amdefine/package.json +0 -16
- package/http/node_modules/bower/lib/node_modules/ansi-escapes/index.js +0 -106
- package/http/node_modules/bower/lib/node_modules/ansi-escapes/license +0 -21
- package/http/node_modules/bower/lib/node_modules/ansi-escapes/package.json +0 -50
- package/http/node_modules/bower/lib/node_modules/ansi-escapes/readme.md +0 -176
- package/http/node_modules/bower/lib/node_modules/ansi-regex/index.js +0 -4
- package/http/node_modules/bower/lib/node_modules/ansi-regex/license +0 -21
- package/http/node_modules/bower/lib/node_modules/ansi-regex/package.json +0 -64
- package/http/node_modules/bower/lib/node_modules/ansi-regex/readme.md +0 -39
- package/http/node_modules/bower/lib/node_modules/ansicolors/.npmignore +0 -15
- package/http/node_modules/bower/lib/node_modules/ansicolors/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/ansicolors/LICENSE +0 -23
- package/http/node_modules/bower/lib/node_modules/ansicolors/README.md +0 -42
- package/http/node_modules/bower/lib/node_modules/ansicolors/ansicolors.js +0 -55
- package/http/node_modules/bower/lib/node_modules/ansicolors/package.json +0 -23
- package/http/node_modules/bower/lib/node_modules/ansicolors/test/ansicolors.js +0 -55
- package/http/node_modules/bower/lib/node_modules/archy/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/archy/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/archy/examples/beep.js +0 -24
- package/http/node_modules/bower/lib/node_modules/archy/examples/multi_line.js +0 -25
- package/http/node_modules/bower/lib/node_modules/archy/index.js +0 -35
- package/http/node_modules/bower/lib/node_modules/archy/package.json +0 -40
- package/http/node_modules/bower/lib/node_modules/archy/readme.markdown +0 -88
- package/http/node_modules/bower/lib/node_modules/archy/test/beep.js +0 -40
- package/http/node_modules/bower/lib/node_modules/archy/test/multi_line.js +0 -45
- package/http/node_modules/bower/lib/node_modules/archy/test/non_unicode.js +0 -40
- package/http/node_modules/bower/lib/node_modules/array-filter/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/array-filter/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/array-filter/README.md +0 -54
- package/http/node_modules/bower/lib/node_modules/array-filter/index.js +0 -19
- package/http/node_modules/bower/lib/node_modules/array-filter/package.json +0 -48
- package/http/node_modules/bower/lib/node_modules/array-filter/test/filter.js +0 -12
- package/http/node_modules/bower/lib/node_modules/array-filter/test/holes.js +0 -12
- package/http/node_modules/bower/lib/node_modules/array-find-index/index.js +0 -25
- package/http/node_modules/bower/lib/node_modules/array-find-index/license +0 -21
- package/http/node_modules/bower/lib/node_modules/array-find-index/package.json +0 -35
- package/http/node_modules/bower/lib/node_modules/array-find-index/readme.md +0 -30
- package/http/node_modules/bower/lib/node_modules/array-map/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/array-map/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/array-map/example/map.js +0 -5
- package/http/node_modules/bower/lib/node_modules/array-map/index.js +0 -11
- package/http/node_modules/bower/lib/node_modules/array-map/package.json +0 -46
- package/http/node_modules/bower/lib/node_modules/array-map/readme.markdown +0 -46
- package/http/node_modules/bower/lib/node_modules/array-map/test/map.js +0 -77
- package/http/node_modules/bower/lib/node_modules/array-reduce/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/array-reduce/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/array-reduce/example/sum.js +0 -4
- package/http/node_modules/bower/lib/node_modules/array-reduce/index.js +0 -18
- package/http/node_modules/bower/lib/node_modules/array-reduce/package.json +0 -48
- package/http/node_modules/bower/lib/node_modules/array-reduce/readme.markdown +0 -46
- package/http/node_modules/bower/lib/node_modules/array-reduce/test/reduce.js +0 -85
- package/http/node_modules/bower/lib/node_modules/asn1/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/asn1/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/asn1/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/asn1/README.md +0 -50
- package/http/node_modules/bower/lib/node_modules/asn1/lib/ber/errors.js +0 -13
- package/http/node_modules/bower/lib/node_modules/asn1/lib/ber/index.js +0 -27
- package/http/node_modules/bower/lib/node_modules/asn1/lib/ber/reader.js +0 -261
- package/http/node_modules/bower/lib/node_modules/asn1/lib/ber/types.js +0 -36
- package/http/node_modules/bower/lib/node_modules/asn1/lib/ber/writer.js +0 -316
- package/http/node_modules/bower/lib/node_modules/asn1/lib/index.js +0 -20
- package/http/node_modules/bower/lib/node_modules/asn1/package.json +0 -24
- package/http/node_modules/bower/lib/node_modules/asn1/tst/ber/reader.test.js +0 -208
- package/http/node_modules/bower/lib/node_modules/asn1/tst/ber/writer.test.js +0 -370
- package/http/node_modules/bower/lib/node_modules/assert-plus/AUTHORS +0 -6
- package/http/node_modules/bower/lib/node_modules/assert-plus/CHANGES.md +0 -14
- package/http/node_modules/bower/lib/node_modules/assert-plus/README.md +0 -162
- package/http/node_modules/bower/lib/node_modules/assert-plus/assert.js +0 -211
- package/http/node_modules/bower/lib/node_modules/assert-plus/package.json +0 -23
- package/http/node_modules/bower/lib/node_modules/async/CHANGELOG.md +0 -125
- package/http/node_modules/bower/lib/node_modules/async/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/async/README.md +0 -1877
- package/http/node_modules/bower/lib/node_modules/async/dist/async.js +0 -1265
- package/http/node_modules/bower/lib/node_modules/async/dist/async.min.js +0 -2
- package/http/node_modules/bower/lib/node_modules/async/lib/async.js +0 -1265
- package/http/node_modules/bower/lib/node_modules/async/package.json +0 -85
- package/http/node_modules/bower/lib/node_modules/asynckit/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/asynckit/README.md +0 -233
- package/http/node_modules/bower/lib/node_modules/asynckit/bench.js +0 -76
- package/http/node_modules/bower/lib/node_modules/asynckit/index.js +0 -6
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/abort.js +0 -29
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/async.js +0 -34
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/defer.js +0 -26
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/iterate.js +0 -75
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/readable_asynckit.js +0 -91
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/readable_parallel.js +0 -25
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/readable_serial.js +0 -25
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/readable_serial_ordered.js +0 -29
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/state.js +0 -37
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/streamify.js +0 -141
- package/http/node_modules/bower/lib/node_modules/asynckit/lib/terminator.js +0 -29
- package/http/node_modules/bower/lib/node_modules/asynckit/package.json +0 -63
- package/http/node_modules/bower/lib/node_modules/asynckit/parallel.js +0 -43
- package/http/node_modules/bower/lib/node_modules/asynckit/serial.js +0 -17
- package/http/node_modules/bower/lib/node_modules/asynckit/serialOrdered.js +0 -75
- package/http/node_modules/bower/lib/node_modules/asynckit/stream.js +0 -21
- package/http/node_modules/bower/lib/node_modules/aws-sign2/LICENSE +0 -55
- package/http/node_modules/bower/lib/node_modules/aws-sign2/README.md +0 -4
- package/http/node_modules/bower/lib/node_modules/aws-sign2/index.js +0 -212
- package/http/node_modules/bower/lib/node_modules/aws-sign2/package.json +0 -17
- package/http/node_modules/bower/lib/node_modules/aws4/.npmignore +0 -4
- package/http/node_modules/bower/lib/node_modules/aws4/.tern-port +0 -1
- package/http/node_modules/bower/lib/node_modules/aws4/.travis.yml +0 -5
- package/http/node_modules/bower/lib/node_modules/aws4/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/aws4/README.md +0 -523
- package/http/node_modules/bower/lib/node_modules/aws4/aws4.js +0 -332
- package/http/node_modules/bower/lib/node_modules/aws4/lru.js +0 -96
- package/http/node_modules/bower/lib/node_modules/aws4/package.json +0 -71
- package/http/node_modules/bower/lib/node_modules/balanced-match/.npmignore +0 -5
- package/http/node_modules/bower/lib/node_modules/balanced-match/LICENSE.md +0 -21
- package/http/node_modules/bower/lib/node_modules/balanced-match/README.md +0 -91
- package/http/node_modules/bower/lib/node_modules/balanced-match/index.js +0 -59
- package/http/node_modules/bower/lib/node_modules/balanced-match/package.json +0 -49
- package/http/node_modules/bower/lib/node_modules/bcrypt-pbkdf/README.md +0 -39
- package/http/node_modules/bower/lib/node_modules/bcrypt-pbkdf/index.js +0 -556
- package/http/node_modules/bower/lib/node_modules/bcrypt-pbkdf/package.json +0 -11
- package/http/node_modules/bower/lib/node_modules/binary/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/binary/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/binary/README.markdown +0 -177
- package/http/node_modules/bower/lib/node_modules/binary/example/buf.js +0 -11
- package/http/node_modules/bower/lib/node_modules/binary/example/parse.js +0 -10
- package/http/node_modules/bower/lib/node_modules/binary/example/stream.js +0 -12
- package/http/node_modules/bower/lib/node_modules/binary/index.js +0 -397
- package/http/node_modules/bower/lib/node_modules/binary/lib/vars.js +0 -28
- package/http/node_modules/bower/lib/node_modules/binary/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/binary/perf/loop.js +0 -92
- package/http/node_modules/bower/lib/node_modules/binary/perf/small.js +0 -80
- package/http/node_modules/bower/lib/node_modules/binary/test/bu.js +0 -46
- package/http/node_modules/bower/lib/node_modules/binary/test/deferred.js +0 -20
- package/http/node_modules/bower/lib/node_modules/binary/test/dots.js +0 -23
- package/http/node_modules/bower/lib/node_modules/binary/test/eof.js +0 -41
- package/http/node_modules/bower/lib/node_modules/binary/test/flush.js +0 -17
- package/http/node_modules/bower/lib/node_modules/binary/test/from_buffer.js +0 -14
- package/http/node_modules/bower/lib/node_modules/binary/test/get_buffer.js +0 -28
- package/http/node_modules/bower/lib/node_modules/binary/test/immediate.js +0 -18
- package/http/node_modules/bower/lib/node_modules/binary/test/interval.js +0 -38
- package/http/node_modules/bower/lib/node_modules/binary/test/into_buffer.js +0 -35
- package/http/node_modules/bower/lib/node_modules/binary/test/into_stream.js +0 -43
- package/http/node_modules/bower/lib/node_modules/binary/test/loop.js +0 -44
- package/http/node_modules/bower/lib/node_modules/binary/test/loop_scan.js +0 -54
- package/http/node_modules/bower/lib/node_modules/binary/test/lu.js +0 -46
- package/http/node_modules/bower/lib/node_modules/binary/test/negbs.js +0 -29
- package/http/node_modules/bower/lib/node_modules/binary/test/negls.js +0 -29
- package/http/node_modules/bower/lib/node_modules/binary/test/nested.js +0 -35
- package/http/node_modules/bower/lib/node_modules/binary/test/not_enough_buf.js +0 -17
- package/http/node_modules/bower/lib/node_modules/binary/test/not_enough_parse.js +0 -19
- package/http/node_modules/bower/lib/node_modules/binary/test/parse.js +0 -54
- package/http/node_modules/bower/lib/node_modules/binary/test/peek.js +0 -40
- package/http/node_modules/bower/lib/node_modules/binary/test/pipe.js +0 -49
- package/http/node_modules/bower/lib/node_modules/binary/test/posbs.js +0 -29
- package/http/node_modules/bower/lib/node_modules/binary/test/posls.js +0 -29
- package/http/node_modules/bower/lib/node_modules/binary/test/scan.js +0 -33
- package/http/node_modules/bower/lib/node_modules/binary/test/scan_buf.js +0 -18
- package/http/node_modules/bower/lib/node_modules/binary/test/scan_buf_null.js +0 -16
- package/http/node_modules/bower/lib/node_modules/binary/test/skip.js +0 -58
- package/http/node_modules/bower/lib/node_modules/binary/test/split.js +0 -34
- package/http/node_modules/bower/lib/node_modules/bl/.jshintrc +0 -59
- package/http/node_modules/bower/lib/node_modules/bl/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/bl/.travis.yml +0 -13
- package/http/node_modules/bower/lib/node_modules/bl/LICENSE.md +0 -13
- package/http/node_modules/bower/lib/node_modules/bl/README.md +0 -200
- package/http/node_modules/bower/lib/node_modules/bl/bl.js +0 -227
- package/http/node_modules/bower/lib/node_modules/bl/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/bl/test/test.js +0 -571
- package/http/node_modules/bower/lib/node_modules/boom/.npmignore +0 -18
- package/http/node_modules/bower/lib/node_modules/boom/.travis.yml +0 -8
- package/http/node_modules/bower/lib/node_modules/boom/CONTRIBUTING.md +0 -1
- package/http/node_modules/bower/lib/node_modules/boom/LICENSE +0 -28
- package/http/node_modules/bower/lib/node_modules/boom/README.md +0 -652
- package/http/node_modules/bower/lib/node_modules/boom/images/boom.png +0 -0
- package/http/node_modules/bower/lib/node_modules/boom/lib/index.js +0 -318
- package/http/node_modules/bower/lib/node_modules/boom/package.json +0 -26
- package/http/node_modules/bower/lib/node_modules/boom/test/index.js +0 -654
- package/http/node_modules/bower/lib/node_modules/bower-config/CHANGELOG.md +0 -103
- package/http/node_modules/bower/lib/node_modules/bower-config/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/bower-config/README.md +0 -64
- package/http/node_modules/bower/lib/node_modules/bower-config/lib/Config.js +0 -109
- package/http/node_modules/bower/lib/node_modules/bower-config/lib/util/defaults.js +0 -45
- package/http/node_modules/bower/lib/node_modules/bower-config/lib/util/expand.js +0 -126
- package/http/node_modules/bower/lib/node_modules/bower-config/lib/util/paths.js +0 -44
- package/http/node_modules/bower/lib/node_modules/bower-config/lib/util/proxy.js +0 -79
- package/http/node_modules/bower/lib/node_modules/bower-config/lib/util/rc.js +0 -158
- package/http/node_modules/bower/lib/node_modules/bower-config/package.json +0 -45
- package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/.editorconfig +0 -12
- package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/.jshintrc +0 -61
- package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/README.md +0 -102
- package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/index.js +0 -128
- package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/package.json +0 -28
- package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/test/test.js +0 -263
- package/http/node_modules/bower/lib/node_modules/bower-json/CHANGELOG.md +0 -17
- package/http/node_modules/bower/lib/node_modules/bower-json/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/bower-json/README.md +0 -159
- package/http/node_modules/bower/lib/node_modules/bower-json/lib/json.js +0 -297
- package/http/node_modules/bower/lib/node_modules/bower-json/lib/util/createError.js +0 -8
- package/http/node_modules/bower/lib/node_modules/bower-json/lib/util/isAsset.js +0 -12
- package/http/node_modules/bower/lib/node_modules/bower-json/lib/util/isComponent.js +0 -41
- package/http/node_modules/bower/lib/node_modules/bower-json/package.json +0 -40
- package/http/node_modules/bower/lib/node_modules/bower-logger/.editorconfig +0 -12
- package/http/node_modules/bower/lib/node_modules/bower-logger/.jshintrc +0 -62
- package/http/node_modules/bower/lib/node_modules/bower-logger/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/bower-logger/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/bower-logger/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/bower-logger/README.md +0 -120
- package/http/node_modules/bower/lib/node_modules/bower-logger/lib/Logger.js +0 -150
- package/http/node_modules/bower/lib/node_modules/bower-logger/package.json +0 -27
- package/http/node_modules/bower/lib/node_modules/bower-logger/test/test.js +0 -389
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/Client.js +0 -70
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/README.md +0 -155
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/index.js +0 -7
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/list.js +0 -184
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/lookup.js +0 -202
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/register.js +0 -58
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/search.js +0 -200
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/unregister.js +0 -47
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/util/Cache.js +0 -195
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/util/createError.js +0 -8
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/util/md5.js +0 -7
- package/http/node_modules/bower/lib/node_modules/bower-registry-client/package.json +0 -39
- package/http/node_modules/bower/lib/node_modules/boxen/border-characters.js +0 -45
- package/http/node_modules/bower/lib/node_modules/boxen/index.js +0 -111
- package/http/node_modules/bower/lib/node_modules/boxen/license +0 -21
- package/http/node_modules/bower/lib/node_modules/boxen/package.json +0 -46
- package/http/node_modules/bower/lib/node_modules/boxen/readme.md +0 -139
- package/http/node_modules/bower/lib/node_modules/brace-expansion/README.md +0 -123
- package/http/node_modules/bower/lib/node_modules/brace-expansion/index.js +0 -201
- package/http/node_modules/bower/lib/node_modules/brace-expansion/package.json +0 -47
- package/http/node_modules/bower/lib/node_modules/buffers/README.markdown +0 -122
- package/http/node_modules/bower/lib/node_modules/buffers/examples/slice.js +0 -9
- package/http/node_modules/bower/lib/node_modules/buffers/examples/splice.js +0 -17
- package/http/node_modules/bower/lib/node_modules/buffers/index.js +0 -269
- package/http/node_modules/bower/lib/node_modules/buffers/package.json +0 -14
- package/http/node_modules/bower/lib/node_modules/buffers/test/buffers.js +0 -209
- package/http/node_modules/bower/lib/node_modules/builtin-modules/builtin-modules.json +0 -35
- package/http/node_modules/bower/lib/node_modules/builtin-modules/index.js +0 -10
- package/http/node_modules/bower/lib/node_modules/builtin-modules/license +0 -21
- package/http/node_modules/bower/lib/node_modules/builtin-modules/package.json +0 -40
- package/http/node_modules/bower/lib/node_modules/builtin-modules/readme.md +0 -41
- package/http/node_modules/bower/lib/node_modules/builtin-modules/static.js +0 -2
- package/http/node_modules/bower/lib/node_modules/camelcase/index.js +0 -27
- package/http/node_modules/bower/lib/node_modules/camelcase/license +0 -21
- package/http/node_modules/bower/lib/node_modules/camelcase/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/camelcase/readme.md +0 -56
- package/http/node_modules/bower/lib/node_modules/camelcase-keys/index.js +0 -12
- package/http/node_modules/bower/lib/node_modules/camelcase-keys/license +0 -21
- package/http/node_modules/bower/lib/node_modules/camelcase-keys/package.json +0 -52
- package/http/node_modules/bower/lib/node_modules/camelcase-keys/readme.md +0 -54
- package/http/node_modules/bower/lib/node_modules/capture-stack-trace/index.js +0 -18
- package/http/node_modules/bower/lib/node_modules/capture-stack-trace/package.json +0 -29
- package/http/node_modules/bower/lib/node_modules/capture-stack-trace/readme.md +0 -36
- package/http/node_modules/bower/lib/node_modules/cardinal/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/cardinal/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/cardinal/LICENSE +0 -23
- package/http/node_modules/bower/lib/node_modules/cardinal/README.md +0 -132
- package/http/node_modules/bower/lib/node_modules/cardinal/bin/cdl.js +0 -74
- package/http/node_modules/bower/lib/node_modules/cardinal/cardinal.js +0 -5
- package/http/node_modules/bower/lib/node_modules/cardinal/examples/.cardinalrc +0 -3
- package/http/node_modules/bower/lib/node_modules/cardinal/examples/README.md +0 -7
- package/http/node_modules/bower/lib/node_modules/cardinal/examples/highlight-json.js +0 -10
- package/http/node_modules/bower/lib/node_modules/cardinal/examples/highlight-self-hide-semicolons.js +0 -22
- package/http/node_modules/bower/lib/node_modules/cardinal/examples/highlight-self.js +0 -16
- package/http/node_modules/bower/lib/node_modules/cardinal/examples/highlight-string.js +0 -14
- package/http/node_modules/bower/lib/node_modules/cardinal/lib/highlight.js +0 -83
- package/http/node_modules/bower/lib/node_modules/cardinal/lib/highlightFile.js +0 -26
- package/http/node_modules/bower/lib/node_modules/cardinal/lib/highlightFileSync.js +0 -11
- package/http/node_modules/bower/lib/node_modules/cardinal/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/cardinal/settings.js +0 -51
- package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-block-comment.js +0 -25
- package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-diff-spike.js +0 -95
- package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-file-async.js +0 -48
- package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-file-sync.js +0 -48
- package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-git-diff.js +0 -3
- package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json-file-async.js +0 -31
- package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json-file-sync.js +0 -29
- package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json.js +0 -41
- package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-string.js +0 -70
- package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-smoke.js +0 -44
- package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/block-comment.js +0 -14
- package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/custom.js +0 -144
- package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/foo-with-errors.js +0 -3
- package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/foo.js +0 -3
- package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/git-diff.txt +0 -78
- package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/json.json +0 -1
- package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/svn-diff.txt +0 -23
- package/http/node_modules/bower/lib/node_modules/cardinal/test/settings.js +0 -77
- package/http/node_modules/bower/lib/node_modules/cardinal/test/themes.js +0 -22
- package/http/node_modules/bower/lib/node_modules/cardinal/themes/README.md +0 -31
- package/http/node_modules/bower/lib/node_modules/cardinal/themes/default.js +0 -147
- package/http/node_modules/bower/lib/node_modules/cardinal/themes/empty.js +0 -140
- package/http/node_modules/bower/lib/node_modules/cardinal/themes/hide-semicolons.js +0 -149
- package/http/node_modules/bower/lib/node_modules/cardinal/themes/tomorrow-night.js +0 -161
- package/http/node_modules/bower/lib/node_modules/cardinal/utl.js +0 -11
- package/http/node_modules/bower/lib/node_modules/caseless/LICENSE +0 -28
- package/http/node_modules/bower/lib/node_modules/caseless/README.md +0 -45
- package/http/node_modules/bower/lib/node_modules/caseless/index.js +0 -66
- package/http/node_modules/bower/lib/node_modules/caseless/package.json +0 -27
- package/http/node_modules/bower/lib/node_modules/caseless/test.js +0 -40
- package/http/node_modules/bower/lib/node_modules/center-align/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/center-align/README.md +0 -74
- package/http/node_modules/bower/lib/node_modules/center-align/index.js +0 -16
- package/http/node_modules/bower/lib/node_modules/center-align/package.json +0 -51
- package/http/node_modules/bower/lib/node_modules/center-align/utils.js +0 -40
- package/http/node_modules/bower/lib/node_modules/chainsaw/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/chainsaw/README.markdown +0 -157
- package/http/node_modules/bower/lib/node_modules/chainsaw/examples/add_do.js +0 -25
- package/http/node_modules/bower/lib/node_modules/chainsaw/examples/prompt.js +0 -67
- package/http/node_modules/bower/lib/node_modules/chainsaw/index.js +0 -145
- package/http/node_modules/bower/lib/node_modules/chainsaw/package.json +0 -23
- package/http/node_modules/bower/lib/node_modules/chainsaw/test/chainsaw.js +0 -418
- package/http/node_modules/bower/lib/node_modules/chalk/index.js +0 -116
- package/http/node_modules/bower/lib/node_modules/chalk/license +0 -21
- package/http/node_modules/bower/lib/node_modules/chalk/package.json +0 -70
- package/http/node_modules/bower/lib/node_modules/chalk/readme.md +0 -213
- package/http/node_modules/bower/lib/node_modules/chmodr/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/chmodr/README.md +0 -3
- package/http/node_modules/bower/lib/node_modules/chmodr/chmodr.js +0 -76
- package/http/node_modules/bower/lib/node_modules/chmodr/package.json +0 -23
- package/http/node_modules/bower/lib/node_modules/chownr/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/chownr/README.md +0 -3
- package/http/node_modules/bower/lib/node_modules/chownr/chownr.js +0 -52
- package/http/node_modules/bower/lib/node_modules/chownr/package.json +0 -23
- package/http/node_modules/bower/lib/node_modules/cli-cursor/index.js +0 -26
- package/http/node_modules/bower/lib/node_modules/cli-cursor/license +0 -21
- package/http/node_modules/bower/lib/node_modules/cli-cursor/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/cli-cursor/readme.md +0 -40
- package/http/node_modules/bower/lib/node_modules/cli-width/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/cli-width/.travis.yml +0 -11
- package/http/node_modules/bower/lib/node_modules/cli-width/LICENSE +0 -13
- package/http/node_modules/bower/lib/node_modules/cli-width/README.md +0 -36
- package/http/node_modules/bower/lib/node_modules/cli-width/coverage/coverage.json +0 -1
- package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/base.css +0 -182
- package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/cli-width/index.html +0 -73
- package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/cli-width/index.js.html +0 -129
- package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/index.html +0 -73
- package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/prettify.css +0 -1
- package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/prettify.js +0 -1
- package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/sorter.js +0 -156
- package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov.info +0 -32
- package/http/node_modules/bower/lib/node_modules/cli-width/index.js +0 -28
- package/http/node_modules/bower/lib/node_modules/cli-width/package.json +0 -29
- package/http/node_modules/bower/lib/node_modules/cliui/.coveralls.yml +0 -1
- package/http/node_modules/bower/lib/node_modules/cliui/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/cliui/.travis.yml +0 -7
- package/http/node_modules/bower/lib/node_modules/cliui/LICENSE.txt +0 -14
- package/http/node_modules/bower/lib/node_modules/cliui/README.md +0 -104
- package/http/node_modules/bower/lib/node_modules/cliui/index.js +0 -273
- package/http/node_modules/bower/lib/node_modules/cliui/package.json +0 -59
- package/http/node_modules/bower/lib/node_modules/cliui/test/cliui.js +0 -349
- package/http/node_modules/bower/lib/node_modules/co/History.md +0 -172
- package/http/node_modules/bower/lib/node_modules/co/LICENSE +0 -22
- package/http/node_modules/bower/lib/node_modules/co/Readme.md +0 -212
- package/http/node_modules/bower/lib/node_modules/co/index.js +0 -237
- package/http/node_modules/bower/lib/node_modules/co/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/code-point-at/index.js +0 -32
- package/http/node_modules/bower/lib/node_modules/code-point-at/license +0 -21
- package/http/node_modules/bower/lib/node_modules/code-point-at/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/code-point-at/readme.md +0 -32
- package/http/node_modules/bower/lib/node_modules/combined-stream/License +0 -19
- package/http/node_modules/bower/lib/node_modules/combined-stream/Readme.md +0 -138
- package/http/node_modules/bower/lib/node_modules/combined-stream/lib/combined_stream.js +0 -188
- package/http/node_modules/bower/lib/node_modules/combined-stream/package.json +0 -25
- package/http/node_modules/bower/lib/node_modules/commander/History.md +0 -298
- package/http/node_modules/bower/lib/node_modules/commander/LICENSE +0 -22
- package/http/node_modules/bower/lib/node_modules/commander/Readme.md +0 -351
- package/http/node_modules/bower/lib/node_modules/commander/index.js +0 -1137
- package/http/node_modules/bower/lib/node_modules/commander/package.json +0 -29
- package/http/node_modules/bower/lib/node_modules/concat-map/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/concat-map/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/concat-map/README.markdown +0 -62
- package/http/node_modules/bower/lib/node_modules/concat-map/example/map.js +0 -6
- package/http/node_modules/bower/lib/node_modules/concat-map/index.js +0 -13
- package/http/node_modules/bower/lib/node_modules/concat-map/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/concat-map/test/map.js +0 -39
- package/http/node_modules/bower/lib/node_modules/configstore/index.js +0 -111
- package/http/node_modules/bower/lib/node_modules/configstore/package.json +0 -51
- package/http/node_modules/bower/lib/node_modules/configstore/readme.md +0 -114
- package/http/node_modules/bower/lib/node_modules/core-util-is/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/core-util-is/README.md +0 -3
- package/http/node_modules/bower/lib/node_modules/core-util-is/float.patch +0 -604
- package/http/node_modules/bower/lib/node_modules/core-util-is/lib/util.js +0 -107
- package/http/node_modules/bower/lib/node_modules/core-util-is/package.json +0 -32
- package/http/node_modules/bower/lib/node_modules/core-util-is/test.js +0 -68
- package/http/node_modules/bower/lib/node_modules/create-error-class/index.js +0 -44
- package/http/node_modules/bower/lib/node_modules/create-error-class/license +0 -21
- package/http/node_modules/bower/lib/node_modules/create-error-class/package.json +0 -30
- package/http/node_modules/bower/lib/node_modules/create-error-class/readme.md +0 -54
- package/http/node_modules/bower/lib/node_modules/cryptiles/.npmignore +0 -18
- package/http/node_modules/bower/lib/node_modules/cryptiles/.travis.yml +0 -8
- package/http/node_modules/bower/lib/node_modules/cryptiles/LICENSE +0 -28
- package/http/node_modules/bower/lib/node_modules/cryptiles/README.md +0 -16
- package/http/node_modules/bower/lib/node_modules/cryptiles/lib/index.js +0 -68
- package/http/node_modules/bower/lib/node_modules/cryptiles/package.json +0 -27
- package/http/node_modules/bower/lib/node_modules/cryptiles/test/index.js +0 -102
- package/http/node_modules/bower/lib/node_modules/currently-unhandled/browser.js +0 -27
- package/http/node_modules/bower/lib/node_modules/currently-unhandled/core.js +0 -33
- package/http/node_modules/bower/lib/node_modules/currently-unhandled/index.js +0 -12
- package/http/node_modules/bower/lib/node_modules/currently-unhandled/license +0 -21
- package/http/node_modules/bower/lib/node_modules/currently-unhandled/package.json +0 -71
- package/http/node_modules/bower/lib/node_modules/currently-unhandled/readme.md +0 -44
- package/http/node_modules/bower/lib/node_modules/dashdash/CHANGES.md +0 -364
- package/http/node_modules/bower/lib/node_modules/dashdash/LICENSE.txt +0 -24
- package/http/node_modules/bower/lib/node_modules/dashdash/README.md +0 -574
- package/http/node_modules/bower/lib/node_modules/dashdash/etc/dashdash.bash_completion.in +0 -389
- package/http/node_modules/bower/lib/node_modules/dashdash/lib/dashdash.js +0 -1055
- package/http/node_modules/bower/lib/node_modules/dashdash/package.json +0 -26
- package/http/node_modules/bower/lib/node_modules/decamelize/index.js +0 -13
- package/http/node_modules/bower/lib/node_modules/decamelize/license +0 -21
- package/http/node_modules/bower/lib/node_modules/decamelize/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/decamelize/readme.md +0 -48
- package/http/node_modules/bower/lib/node_modules/decompress-zip/README.md +0 -74
- package/http/node_modules/bower/lib/node_modules/decompress-zip/bin/decompress-zip +0 -83
- package/http/node_modules/bower/lib/node_modules/decompress-zip/lib/decompress-zip.js +0 -323
- package/http/node_modules/bower/lib/node_modules/decompress-zip/lib/extractors.js +0 -179
- package/http/node_modules/bower/lib/node_modules/decompress-zip/lib/file-details.js +0 -37
- package/http/node_modules/bower/lib/node_modules/decompress-zip/lib/signatures.js +0 -10
- package/http/node_modules/bower/lib/node_modules/decompress-zip/lib/structures.js +0 -228
- package/http/node_modules/bower/lib/node_modules/decompress-zip/package.json +0 -54
- package/http/node_modules/bower/lib/node_modules/deep-extend/CHANGELOG.md +0 -21
- package/http/node_modules/bower/lib/node_modules/deep-extend/LICENSE +0 -20
- package/http/node_modules/bower/lib/node_modules/deep-extend/README.md +0 -90
- package/http/node_modules/bower/lib/node_modules/deep-extend/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/deep-extend/lib/deep-extend.js +0 -144
- package/http/node_modules/bower/lib/node_modules/deep-extend/package.json +0 -63
- package/http/node_modules/bower/lib/node_modules/delayed-stream/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/delayed-stream/License +0 -19
- package/http/node_modules/bower/lib/node_modules/delayed-stream/Makefile +0 -7
- package/http/node_modules/bower/lib/node_modules/delayed-stream/Readme.md +0 -141
- package/http/node_modules/bower/lib/node_modules/delayed-stream/lib/delayed_stream.js +0 -107
- package/http/node_modules/bower/lib/node_modules/delayed-stream/package.json +0 -27
- package/http/node_modules/bower/lib/node_modules/destroy/LICENSE +0 -22
- package/http/node_modules/bower/lib/node_modules/destroy/README.md +0 -60
- package/http/node_modules/bower/lib/node_modules/destroy/index.js +0 -75
- package/http/node_modules/bower/lib/node_modules/destroy/package.json +0 -37
- package/http/node_modules/bower/lib/node_modules/dot-prop/index.js +0 -111
- package/http/node_modules/bower/lib/node_modules/dot-prop/license +0 -21
- package/http/node_modules/bower/lib/node_modules/dot-prop/package.json +0 -45
- package/http/node_modules/bower/lib/node_modules/dot-prop/readme.md +0 -82
- package/http/node_modules/bower/lib/node_modules/duplexer2/LICENSE.md +0 -26
- package/http/node_modules/bower/lib/node_modules/duplexer2/README.md +0 -115
- package/http/node_modules/bower/lib/node_modules/duplexer2/index.js +0 -76
- package/http/node_modules/bower/lib/node_modules/duplexer2/package.json +0 -28
- package/http/node_modules/bower/lib/node_modules/ecc-jsbn/.npmignore +0 -15
- package/http/node_modules/bower/lib/node_modules/ecc-jsbn/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/ecc-jsbn/README.md +0 -8
- package/http/node_modules/bower/lib/node_modules/ecc-jsbn/index.js +0 -57
- package/http/node_modules/bower/lib/node_modules/ecc-jsbn/lib/LICENSE-jsbn +0 -40
- package/http/node_modules/bower/lib/node_modules/ecc-jsbn/lib/ec.js +0 -561
- package/http/node_modules/bower/lib/node_modules/ecc-jsbn/lib/sec.js +0 -170
- package/http/node_modules/bower/lib/node_modules/ecc-jsbn/package.json +0 -39
- package/http/node_modules/bower/lib/node_modules/ecc-jsbn/test.js +0 -14
- package/http/node_modules/bower/lib/node_modules/end-of-stream/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/end-of-stream/README.md +0 -52
- package/http/node_modules/bower/lib/node_modules/end-of-stream/index.js +0 -83
- package/http/node_modules/bower/lib/node_modules/end-of-stream/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/ends-with/.gitattributes +0 -14
- package/http/node_modules/bower/lib/node_modules/ends-with/.jshintrc +0 -22
- package/http/node_modules/bower/lib/node_modules/ends-with/.npmignore +0 -53
- package/http/node_modules/bower/lib/node_modules/ends-with/.travis.yml +0 -3
- package/http/node_modules/bower/lib/node_modules/ends-with/.verbrc.md +0 -55
- package/http/node_modules/bower/lib/node_modules/ends-with/LICENSE-MIT +0 -22
- package/http/node_modules/bower/lib/node_modules/ends-with/README.md +0 -64
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/index-of.js +0 -7
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/last-index-of.js +0 -8
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-exec.js +0 -8
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-search.js +0 -8
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-test.js +0 -8
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/slice.js +0 -7
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/substr.js +0 -7
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/substring.js +0 -7
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/while.js +0 -20
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/index.js +0 -136
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/samples/lorem1.txt +0 -1
- package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/samples/lorem2.txt +0 -13
- package/http/node_modules/bower/lib/node_modules/ends-with/index.js +0 -27
- package/http/node_modules/bower/lib/node_modules/ends-with/package.json +0 -51
- package/http/node_modules/bower/lib/node_modules/ends-with/test.js +0 -42
- package/http/node_modules/bower/lib/node_modules/error-ex/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/error-ex/README.md +0 -144
- package/http/node_modules/bower/lib/node_modules/error-ex/index.js +0 -133
- package/http/node_modules/bower/lib/node_modules/error-ex/package.json +0 -46
- package/http/node_modules/bower/lib/node_modules/escape-string-regexp/index.js +0 -11
- package/http/node_modules/bower/lib/node_modules/escape-string-regexp/license +0 -21
- package/http/node_modules/bower/lib/node_modules/escape-string-regexp/package.json +0 -41
- package/http/node_modules/bower/lib/node_modules/escape-string-regexp/readme.md +0 -27
- package/http/node_modules/bower/lib/node_modules/exit-hook/index.js +0 -30
- package/http/node_modules/bower/lib/node_modules/exit-hook/package.json +0 -39
- package/http/node_modules/bower/lib/node_modules/exit-hook/readme.md +0 -40
- package/http/node_modules/bower/lib/node_modules/ext-list/index.js +0 -18
- package/http/node_modules/bower/lib/node_modules/ext-list/license +0 -21
- package/http/node_modules/bower/lib/node_modules/ext-list/package.json +0 -32
- package/http/node_modules/bower/lib/node_modules/ext-list/readme.md +0 -25
- package/http/node_modules/bower/lib/node_modules/ext-name/cli.js +0 -28
- package/http/node_modules/bower/lib/node_modules/ext-name/index.js +0 -19
- package/http/node_modules/bower/lib/node_modules/ext-name/license +0 -21
- package/http/node_modules/bower/lib/node_modules/ext-name/package.json +0 -39
- package/http/node_modules/bower/lib/node_modules/ext-name/readme.md +0 -42
- package/http/node_modules/bower/lib/node_modules/extend/.eslintrc +0 -17
- package/http/node_modules/bower/lib/node_modules/extend/.jscs.json +0 -175
- package/http/node_modules/bower/lib/node_modules/extend/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/extend/.travis.yml +0 -179
- package/http/node_modules/bower/lib/node_modules/extend/CHANGELOG.md +0 -77
- package/http/node_modules/bower/lib/node_modules/extend/LICENSE +0 -23
- package/http/node_modules/bower/lib/node_modules/extend/README.md +0 -81
- package/http/node_modules/bower/lib/node_modules/extend/component.json +0 -32
- package/http/node_modules/bower/lib/node_modules/extend/index.js +0 -86
- package/http/node_modules/bower/lib/node_modules/extend/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/extsprintf/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/extsprintf/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/extsprintf/Makefile +0 -24
- package/http/node_modules/bower/lib/node_modules/extsprintf/Makefile.targ +0 -285
- package/http/node_modules/bower/lib/node_modules/extsprintf/README.md +0 -46
- package/http/node_modules/bower/lib/node_modules/extsprintf/jsl.node.conf +0 -137
- package/http/node_modules/bower/lib/node_modules/extsprintf/lib/extsprintf.js +0 -183
- package/http/node_modules/bower/lib/node_modules/extsprintf/package.json +0 -14
- package/http/node_modules/bower/lib/node_modules/figures/index.js +0 -147
- package/http/node_modules/bower/lib/node_modules/figures/license +0 -21
- package/http/node_modules/bower/lib/node_modules/figures/package.json +0 -45
- package/http/node_modules/bower/lib/node_modules/figures/readme.md +0 -115
- package/http/node_modules/bower/lib/node_modules/filled-array/index.js +0 -15
- package/http/node_modules/bower/lib/node_modules/filled-array/license +0 -21
- package/http/node_modules/bower/lib/node_modules/filled-array/package.json +0 -37
- package/http/node_modules/bower/lib/node_modules/filled-array/readme.md +0 -52
- package/http/node_modules/bower/lib/node_modules/find-up/index.js +0 -53
- package/http/node_modules/bower/lib/node_modules/find-up/license +0 -21
- package/http/node_modules/bower/lib/node_modules/find-up/package.json +0 -51
- package/http/node_modules/bower/lib/node_modules/find-up/readme.md +0 -72
- package/http/node_modules/bower/lib/node_modules/findup-sync/.npmignore +0 -4
- package/http/node_modules/bower/lib/node_modules/findup-sync/LICENSE-MIT +0 -22
- package/http/node_modules/bower/lib/node_modules/findup-sync/README.md +0 -48
- package/http/node_modules/bower/lib/node_modules/findup-sync/lib/findup-sync.js +0 -49
- package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/README.md +0 -377
- package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/common.js +0 -245
- package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/glob.js +0 -752
- package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/package.json +0 -42
- package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/sync.js +0 -460
- package/http/node_modules/bower/lib/node_modules/findup-sync/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/forever-agent/LICENSE +0 -55
- package/http/node_modules/bower/lib/node_modules/forever-agent/README.md +0 -4
- package/http/node_modules/bower/lib/node_modules/forever-agent/index.js +0 -138
- package/http/node_modules/bower/lib/node_modules/forever-agent/package.json +0 -17
- package/http/node_modules/bower/lib/node_modules/form-data/License +0 -19
- package/http/node_modules/bower/lib/node_modules/form-data/README.md +0 -217
- package/http/node_modules/bower/lib/node_modules/form-data/lib/browser.js +0 -2
- package/http/node_modules/bower/lib/node_modules/form-data/lib/form_data.js +0 -444
- package/http/node_modules/bower/lib/node_modules/form-data/lib/populate.js +0 -10
- package/http/node_modules/bower/lib/node_modules/form-data/package.json +0 -65
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/.npmignore +0 -3
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/.travis.yml +0 -11
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/README.md +0 -35
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/index.js +0 -124
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/basic.js +0 -97
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/chown.js +0 -44
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/rename-fail.js +0 -30
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/slow-close.js +0 -40
- package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/toolong.js +0 -29
- package/http/node_modules/bower/lib/node_modules/fs.realpath/LICENSE +0 -43
- package/http/node_modules/bower/lib/node_modules/fs.realpath/README.md +0 -33
- package/http/node_modules/bower/lib/node_modules/fs.realpath/index.js +0 -66
- package/http/node_modules/bower/lib/node_modules/fs.realpath/old.js +0 -303
- package/http/node_modules/bower/lib/node_modules/fs.realpath/package.json +0 -26
- package/http/node_modules/bower/lib/node_modules/fstream/.npmignore +0 -5
- package/http/node_modules/bower/lib/node_modules/fstream/.travis.yml +0 -9
- package/http/node_modules/bower/lib/node_modules/fstream/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/fstream/README.md +0 -76
- package/http/node_modules/bower/lib/node_modules/fstream/examples/filter-pipe.js +0 -134
- package/http/node_modules/bower/lib/node_modules/fstream/examples/pipe.js +0 -118
- package/http/node_modules/bower/lib/node_modules/fstream/examples/reader.js +0 -68
- package/http/node_modules/bower/lib/node_modules/fstream/examples/symlink-write.js +0 -27
- package/http/node_modules/bower/lib/node_modules/fstream/fstream.js +0 -35
- package/http/node_modules/bower/lib/node_modules/fstream/lib/abstract.js +0 -85
- package/http/node_modules/bower/lib/node_modules/fstream/lib/collect.js +0 -70
- package/http/node_modules/bower/lib/node_modules/fstream/lib/dir-reader.js +0 -252
- package/http/node_modules/bower/lib/node_modules/fstream/lib/dir-writer.js +0 -174
- package/http/node_modules/bower/lib/node_modules/fstream/lib/file-reader.js +0 -150
- package/http/node_modules/bower/lib/node_modules/fstream/lib/file-writer.js +0 -107
- package/http/node_modules/bower/lib/node_modules/fstream/lib/get-type.js +0 -33
- package/http/node_modules/bower/lib/node_modules/fstream/lib/link-reader.js +0 -53
- package/http/node_modules/bower/lib/node_modules/fstream/lib/link-writer.js +0 -95
- package/http/node_modules/bower/lib/node_modules/fstream/lib/proxy-reader.js +0 -95
- package/http/node_modules/bower/lib/node_modules/fstream/lib/proxy-writer.js +0 -111
- package/http/node_modules/bower/lib/node_modules/fstream/lib/reader.js +0 -255
- package/http/node_modules/bower/lib/node_modules/fstream/lib/socket-reader.js +0 -36
- package/http/node_modules/bower/lib/node_modules/fstream/lib/writer.js +0 -390
- package/http/node_modules/bower/lib/node_modules/fstream/package.json +0 -28
- package/http/node_modules/bower/lib/node_modules/fstream-ignore/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/fstream-ignore/README.md +0 -22
- package/http/node_modules/bower/lib/node_modules/fstream-ignore/ignore.js +0 -275
- package/http/node_modules/bower/lib/node_modules/fstream-ignore/package.json +0 -28
- package/http/node_modules/bower/lib/node_modules/generate-function/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/generate-function/.travis.yml +0 -3
- package/http/node_modules/bower/lib/node_modules/generate-function/README.md +0 -72
- package/http/node_modules/bower/lib/node_modules/generate-function/example.js +0 -27
- package/http/node_modules/bower/lib/node_modules/generate-function/index.js +0 -61
- package/http/node_modules/bower/lib/node_modules/generate-function/package.json +0 -29
- package/http/node_modules/bower/lib/node_modules/generate-function/test.js +0 -33
- package/http/node_modules/bower/lib/node_modules/generate-object-property/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/generate-object-property/.travis.yml +0 -3
- package/http/node_modules/bower/lib/node_modules/generate-object-property/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/generate-object-property/README.md +0 -19
- package/http/node_modules/bower/lib/node_modules/generate-object-property/index.js +0 -12
- package/http/node_modules/bower/lib/node_modules/generate-object-property/package.json +0 -25
- package/http/node_modules/bower/lib/node_modules/generate-object-property/test.js +0 -12
- package/http/node_modules/bower/lib/node_modules/get-stdin/index.js +0 -49
- package/http/node_modules/bower/lib/node_modules/get-stdin/package.json +0 -35
- package/http/node_modules/bower/lib/node_modules/get-stdin/readme.md +0 -44
- package/http/node_modules/bower/lib/node_modules/getpass/.npmignore +0 -8
- package/http/node_modules/bower/lib/node_modules/getpass/.travis.yml +0 -9
- package/http/node_modules/bower/lib/node_modules/getpass/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/getpass/README.md +0 -32
- package/http/node_modules/bower/lib/node_modules/getpass/lib/index.js +0 -123
- package/http/node_modules/bower/lib/node_modules/getpass/package.json +0 -18
- package/http/node_modules/bower/lib/node_modules/github/.npmignore +0 -5
- package/http/node_modules/bower/lib/node_modules/github/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/github/README.md +0 -173
- package/http/node_modules/bower/lib/node_modules/github/api/v2.0.0/routes.json +0 -3
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/authorization.js +0 -255
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/authorizationTest.js +0 -258
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/events.js +0 -495
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/eventsTest.js +0 -212
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gists.js +0 -801
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gistsTest.js +0 -605
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitdata.js +0 -650
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitdataTest.js +0 -480
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitignore.js +0 -112
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitignoreTest.js +0 -54
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/index.js +0 -40
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/issues.js +0 -1246
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/issuesTest.js +0 -423
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/markdown.js +0 -114
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/markdownTest.js +0 -56
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/misc.js +0 -157
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/miscTest.js +0 -69
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/orgs.js +0 -1140
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/orgsTest.js +0 -361
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/pullRequests.js +0 -757
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/pullRequestsTest.js +0 -281
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/releases.js +0 -507
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/releasesTest.js +0 -262
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/repos.js +0 -3548
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/reposTest.js +0 -1126
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/routes.json +0 -3914
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/search.js +0 -263
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/searchTest.js +0 -119
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/statuses.js +0 -167
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/statusesTest.js +0 -76
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/user.js +0 -1035
- package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/userTest.js +0 -304
- package/http/node_modules/bower/lib/node_modules/github/error.js +0 -117
- package/http/node_modules/bower/lib/node_modules/github/generate.js +0 -295
- package/http/node_modules/bower/lib/node_modules/github/index.js +0 -847
- package/http/node_modules/bower/lib/node_modules/github/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/github/seed.yml +0 -5
- package/http/node_modules/bower/lib/node_modules/github/templates/after_request.js.tpl +0 -11
- package/http/node_modules/bower/lib/node_modules/github/templates/handler.js.tpl +0 -24
- package/http/node_modules/bower/lib/node_modules/github/templates/index.js.tpl +0 -40
- package/http/node_modules/bower/lib/node_modules/github/templates/section.js.tpl +0 -23
- package/http/node_modules/bower/lib/node_modules/github/templates/test_handler.js.tpl +0 -10
- package/http/node_modules/bower/lib/node_modules/github/templates/test_section.js.tpl +0 -30
- package/http/node_modules/bower/lib/node_modules/github/test/client_test.js +0 -62
- package/http/node_modules/bower/lib/node_modules/github/test/example.js +0 -37
- package/http/node_modules/bower/lib/node_modules/github/test/oauth.js +0 -95
- package/http/node_modules/bower/lib/node_modules/github/test/oauth_server.js +0 -59
- package/http/node_modules/bower/lib/node_modules/github/util.js +0 -140
- package/http/node_modules/bower/lib/node_modules/glob/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/glob/README.md +0 -369
- package/http/node_modules/bower/lib/node_modules/glob/common.js +0 -237
- package/http/node_modules/bower/lib/node_modules/glob/glob.js +0 -740
- package/http/node_modules/bower/lib/node_modules/glob/package.json +0 -41
- package/http/node_modules/bower/lib/node_modules/glob/sync.js +0 -457
- package/http/node_modules/bower/lib/node_modules/got/index.js +0 -401
- package/http/node_modules/bower/lib/node_modules/got/license +0 -21
- package/http/node_modules/bower/lib/node_modules/got/package.json +0 -82
- package/http/node_modules/bower/lib/node_modules/got/readme.md +0 -357
- package/http/node_modules/bower/lib/node_modules/graceful-fs/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/graceful-fs/README.md +0 -133
- package/http/node_modules/bower/lib/node_modules/graceful-fs/fs.js +0 -21
- package/http/node_modules/bower/lib/node_modules/graceful-fs/graceful-fs.js +0 -262
- package/http/node_modules/bower/lib/node_modules/graceful-fs/legacy-streams.js +0 -118
- package/http/node_modules/bower/lib/node_modules/graceful-fs/package.json +0 -47
- package/http/node_modules/bower/lib/node_modules/graceful-fs/polyfills.js +0 -330
- package/http/node_modules/bower/lib/node_modules/handlebars/.gitattributes +0 -6
- package/http/node_modules/bower/lib/node_modules/handlebars/.gitmodules +0 -3
- package/http/node_modules/bower/lib/node_modules/handlebars/.idea/compiler.xml +0 -22
- package/http/node_modules/bower/lib/node_modules/handlebars/.idea/copyright/profiles_settings.xml +0 -3
- package/http/node_modules/bower/lib/node_modules/handlebars/.idea/handlebars.js.iml +0 -16
- package/http/node_modules/bower/lib/node_modules/handlebars/.idea/jsLibraryMappings.xml +0 -6
- package/http/node_modules/bower/lib/node_modules/handlebars/.idea/misc.xml +0 -22
- package/http/node_modules/bower/lib/node_modules/handlebars/.idea/modules.xml +0 -8
- package/http/node_modules/bower/lib/node_modules/handlebars/.idea/vcs.xml +0 -6
- package/http/node_modules/bower/lib/node_modules/handlebars/.idea/watcherTasks.xml +0 -4
- package/http/node_modules/bower/lib/node_modules/handlebars/.idea/workspace.xml +0 -2064
- package/http/node_modules/bower/lib/node_modules/handlebars/.istanbul.yml +0 -2
- package/http/node_modules/bower/lib/node_modules/handlebars/.npmignore +0 -25
- package/http/node_modules/bower/lib/node_modules/handlebars/CONTRIBUTING.md +0 -99
- package/http/node_modules/bower/lib/node_modules/handlebars/FAQ.md +0 -60
- package/http/node_modules/bower/lib/node_modules/handlebars/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/handlebars/README.markdown +0 -167
- package/http/node_modules/bower/lib/node_modules/handlebars/bin/handlebars +0 -128
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/base.js +0 -96
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/ast.js +0 -31
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/base.js +0 -36
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/code-gen.js +0 -163
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/compiler.js +0 -569
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/helpers.js +0 -230
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/javascript-compiler.js +0 -1120
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/parser.js +0 -739
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/printer.js +0 -186
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/visitor.js +0 -138
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/whitespace-control.js +0 -219
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/decorators/inline.js +0 -25
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/decorators.js +0 -16
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/exception.js +0 -53
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/block-helper-missing.js +0 -35
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/each.js +0 -89
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/helper-missing.js +0 -22
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/if.js +0 -25
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/log.js +0 -24
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/lookup.js +0 -10
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/with.js +0 -29
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers.js +0 -34
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/logger.js +0 -44
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/no-conflict.js +0 -18
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/runtime.js +0 -297
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/safe-string.js +0 -15
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/utils.js +0 -126
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars.js +0 -51
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars.runtime.js +0 -44
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/precompiler.js +0 -289
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/base.js +0 -104
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/ast.js +0 -31
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js +0 -48
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js +0 -166
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js +0 -573
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js +0 -230
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js +0 -1128
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js +0 -739
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js +0 -186
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js +0 -140
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js +0 -221
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js +0 -29
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/decorators.js +0 -16
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/exception.js +0 -54
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js +0 -39
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js +0 -94
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/helper-missing.js +0 -25
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/if.js +0 -29
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/log.js +0 -26
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js +0 -12
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/with.js +0 -33
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers.js +0 -46
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/logger.js +0 -47
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js +0 -20
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/runtime.js +0 -307
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/safe-string.js +0 -15
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/utils.js +0 -124
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars.js +0 -65
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars.runtime.js +0 -66
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/precompiler.js +0 -305
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.amd.js +0 -4352
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.amd.min.js +0 -29
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.js +0 -4840
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.min.js +0 -29
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.amd.js +0 -1046
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.amd.min.js +0 -27
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.js +0 -1468
- package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.min.js +0 -27
- package/http/node_modules/bower/lib/node_modules/handlebars/docs/compiler-api.md +0 -316
- package/http/node_modules/bower/lib/node_modules/handlebars/docs/decorators-api.md +0 -19
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/base.js +0 -78
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/ast.js +0 -28
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/base.js +0 -24
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/code-gen.js +0 -168
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/compiler.js +0 -559
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/helpers.js +0 -212
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js +0 -1137
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/parser.js +0 -622
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/printer.js +0 -171
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/visitor.js +0 -129
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/whitespace-control.js +0 -216
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/decorators/inline.js +0 -22
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/decorators.js +0 -6
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/exception.js +0 -49
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/block-helper-missing.js +0 -32
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/each.js +0 -79
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js +0 -13
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/if.js +0 -20
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/log.js +0 -19
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/lookup.js +0 -5
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/with.js +0 -24
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers.js +0 -17
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/logger.js +0 -35
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/no-conflict.js +0 -13
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/runtime.js +0 -281
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/safe-string.js +0 -10
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/utils.js +0 -108
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars.js +0 -41
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars.runtime.js +0 -37
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/index.js +0 -25
- package/http/node_modules/bower/lib/node_modules/handlebars/lib/precompiler.js +0 -273
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/README.md +0 -510
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/assert-shim.js +0 -56
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/mini-require.js +0 -152
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/prefix-source-map.jsm +0 -21
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/prefix-utils.jsm +0 -18
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/suffix-browser.js +0 -8
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/suffix-source-map.jsm +0 -6
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/suffix-utils.jsm +0 -21
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/test-prefix.js +0 -8
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/test-suffix.js +0 -3
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/array-set.js +0 -107
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/base64-vlq.js +0 -146
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/base64.js +0 -73
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/binary-search.js +0 -117
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/mapping-list.js +0 -86
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/quick-sort.js +0 -120
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/source-map-consumer.js +0 -1077
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/source-map-generator.js +0 -399
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/source-node.js +0 -414
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/util.js +0 -370
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map.js +0 -8
- package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/package.json +0 -68
- package/http/node_modules/bower/lib/node_modules/handlebars/package.json +0 -77
- package/http/node_modules/bower/lib/node_modules/handlebars/print-script +0 -95
- package/http/node_modules/bower/lib/node_modules/handlebars/release-notes.md +0 -527
- package/http/node_modules/bower/lib/node_modules/handlebars/runtime.js +0 -3
- package/http/node_modules/bower/lib/node_modules/har-schema/LICENSE +0 -13
- package/http/node_modules/bower/lib/node_modules/har-schema/README.md +0 -49
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/afterRequest.json +0 -29
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/beforeRequest.json +0 -29
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/browser.json +0 -19
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/cache.json +0 -20
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/content.json +0 -28
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/cookie.json +0 -35
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/creator.json +0 -19
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/entry.json +0 -52
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/har.json +0 -12
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/header.json +0 -19
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/index.js +0 -22
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/log.json +0 -35
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/page.json +0 -31
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/pageTimings.json +0 -17
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/postData.json +0 -42
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/query.json +0 -19
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/request.json +0 -56
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/response.json +0 -53
- package/http/node_modules/bower/lib/node_modules/har-schema/lib/timings.json +0 -41
- package/http/node_modules/bower/lib/node_modules/har-schema/package.json +0 -54
- package/http/node_modules/bower/lib/node_modules/har-validator/LICENSE +0 -13
- package/http/node_modules/bower/lib/node_modules/har-validator/README.md +0 -309
- package/http/node_modules/bower/lib/node_modules/har-validator/bin/har-validator +0 -56
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/async.js +0 -14
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/error.js +0 -10
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/index.js +0 -22
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/runner.js +0 -29
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/cache.json +0 -13
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/cacheEntry.json +0 -31
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/content.json +0 -27
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/cookie.json +0 -34
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/creator.json +0 -18
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/entry.json +0 -51
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/har.json +0 -11
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/index.js +0 -49
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/log.json +0 -34
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/page.json +0 -30
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/pageTimings.json +0 -16
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/postData.json +0 -41
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/record.json +0 -18
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/request.json +0 -55
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/response.json +0 -52
- package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/timings.json +0 -40
- package/http/node_modules/bower/lib/node_modules/har-validator/package.json +0 -55
- package/http/node_modules/bower/lib/node_modules/has-ansi/index.js +0 -4
- package/http/node_modules/bower/lib/node_modules/has-ansi/license +0 -21
- package/http/node_modules/bower/lib/node_modules/has-ansi/package.json +0 -55
- package/http/node_modules/bower/lib/node_modules/has-ansi/readme.md +0 -36
- package/http/node_modules/bower/lib/node_modules/hawk/.npmignore +0 -20
- package/http/node_modules/bower/lib/node_modules/hawk/.travis.yml +0 -5
- package/http/node_modules/bower/lib/node_modules/hawk/LICENSE +0 -28
- package/http/node_modules/bower/lib/node_modules/hawk/README.md +0 -634
- package/http/node_modules/bower/lib/node_modules/hawk/bower.json +0 -24
- package/http/node_modules/bower/lib/node_modules/hawk/component.json +0 -19
- package/http/node_modules/bower/lib/node_modules/hawk/dist/client.js +0 -343
- package/http/node_modules/bower/lib/node_modules/hawk/example/usage.js +0 -78
- package/http/node_modules/bower/lib/node_modules/hawk/images/hawk.png +0 -0
- package/http/node_modules/bower/lib/node_modules/hawk/images/logo.png +0 -0
- package/http/node_modules/bower/lib/node_modules/hawk/lib/browser.js +0 -637
- package/http/node_modules/bower/lib/node_modules/hawk/lib/client.js +0 -369
- package/http/node_modules/bower/lib/node_modules/hawk/lib/crypto.js +0 -126
- package/http/node_modules/bower/lib/node_modules/hawk/lib/index.js +0 -15
- package/http/node_modules/bower/lib/node_modules/hawk/lib/server.js +0 -548
- package/http/node_modules/bower/lib/node_modules/hawk/lib/utils.js +0 -184
- package/http/node_modules/bower/lib/node_modules/hawk/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/hawk/test/browser.js +0 -1492
- package/http/node_modules/bower/lib/node_modules/hawk/test/client.js +0 -440
- package/http/node_modules/bower/lib/node_modules/hawk/test/crypto.js +0 -70
- package/http/node_modules/bower/lib/node_modules/hawk/test/index.js +0 -378
- package/http/node_modules/bower/lib/node_modules/hawk/test/readme.js +0 -95
- package/http/node_modules/bower/lib/node_modules/hawk/test/server.js +0 -1329
- package/http/node_modules/bower/lib/node_modules/hawk/test/uri.js +0 -838
- package/http/node_modules/bower/lib/node_modules/hawk/test/utils.js +0 -149
- package/http/node_modules/bower/lib/node_modules/hosted-git-info/LICENSE +0 -13
- package/http/node_modules/bower/lib/node_modules/hosted-git-info/README.md +0 -132
- package/http/node_modules/bower/lib/node_modules/hosted-git-info/git-host-info.js +0 -68
- package/http/node_modules/bower/lib/node_modules/hosted-git-info/git-host.js +0 -114
- package/http/node_modules/bower/lib/node_modules/hosted-git-info/index.js +0 -121
- package/http/node_modules/bower/lib/node_modules/hosted-git-info/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/http-signature/.dir-locals.el +0 -6
- package/http/node_modules/bower/lib/node_modules/http-signature/.npmignore +0 -7
- package/http/node_modules/bower/lib/node_modules/http-signature/CHANGES.md +0 -46
- package/http/node_modules/bower/lib/node_modules/http-signature/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/http-signature/README.md +0 -79
- package/http/node_modules/bower/lib/node_modules/http-signature/http_signing.md +0 -363
- package/http/node_modules/bower/lib/node_modules/http-signature/lib/index.js +0 -29
- package/http/node_modules/bower/lib/node_modules/http-signature/lib/parser.js +0 -318
- package/http/node_modules/bower/lib/node_modules/http-signature/lib/signer.js +0 -399
- package/http/node_modules/bower/lib/node_modules/http-signature/lib/utils.js +0 -112
- package/http/node_modules/bower/lib/node_modules/http-signature/lib/verify.js +0 -88
- package/http/node_modules/bower/lib/node_modules/http-signature/package.json +0 -39
- package/http/node_modules/bower/lib/node_modules/iferr/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/iferr/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/iferr/README.md +0 -40
- package/http/node_modules/bower/lib/node_modules/iferr/index.coffee +0 -24
- package/http/node_modules/bower/lib/node_modules/iferr/index.js +0 -49
- package/http/node_modules/bower/lib/node_modules/iferr/package.json +0 -28
- package/http/node_modules/bower/lib/node_modules/iferr/test/index.coffee +0 -42
- package/http/node_modules/bower/lib/node_modules/iferr/test/mocha.opts +0 -2
- package/http/node_modules/bower/lib/node_modules/imurmurhash/README.md +0 -122
- package/http/node_modules/bower/lib/node_modules/imurmurhash/imurmurhash.js +0 -138
- package/http/node_modules/bower/lib/node_modules/imurmurhash/imurmurhash.min.js +0 -12
- package/http/node_modules/bower/lib/node_modules/imurmurhash/package.json +0 -40
- package/http/node_modules/bower/lib/node_modules/indent-string/index.js +0 -20
- package/http/node_modules/bower/lib/node_modules/indent-string/license +0 -21
- package/http/node_modules/bower/lib/node_modules/indent-string/package.json +0 -36
- package/http/node_modules/bower/lib/node_modules/indent-string/readme.md +0 -58
- package/http/node_modules/bower/lib/node_modules/inflight/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/inflight/README.md +0 -37
- package/http/node_modules/bower/lib/node_modules/inflight/inflight.js +0 -54
- package/http/node_modules/bower/lib/node_modules/inflight/package.json +0 -29
- package/http/node_modules/bower/lib/node_modules/inherits/LICENSE +0 -16
- package/http/node_modules/bower/lib/node_modules/inherits/README.md +0 -42
- package/http/node_modules/bower/lib/node_modules/inherits/inherits.js +0 -7
- package/http/node_modules/bower/lib/node_modules/inherits/inherits_browser.js +0 -23
- package/http/node_modules/bower/lib/node_modules/inherits/package.json +0 -29
- package/http/node_modules/bower/lib/node_modules/ini/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/ini/README.md +0 -102
- package/http/node_modules/bower/lib/node_modules/ini/ini.js +0 -190
- package/http/node_modules/bower/lib/node_modules/ini/package.json +0 -25
- package/http/node_modules/bower/lib/node_modules/inquirer/README.md +0 -300
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/inquirer.js +0 -79
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/objects/choice.js +0 -34
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/objects/choices.js +0 -111
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/objects/separator.js +0 -35
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/base.js +0 -177
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/checkbox.js +0 -215
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/confirm.js +0 -110
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/expand.js +0 -257
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/input.js +0 -113
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/list.js +0 -172
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/password.js +0 -120
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/rawlist.js +0 -184
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/ui/baseUI.js +0 -76
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/ui/bottom-bar.js +0 -98
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/ui/prompt.js +0 -126
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/utils/events.js +0 -34
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/utils/paginator.js +0 -38
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/utils/readline.js +0 -51
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/utils/screen-manager.js +0 -112
- package/http/node_modules/bower/lib/node_modules/inquirer/lib/utils/utils.js +0 -47
- package/http/node_modules/bower/lib/node_modules/inquirer/package.json +0 -48
- package/http/node_modules/bower/lib/node_modules/intersect/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/intersect/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/intersect/Makefile +0 -9
- package/http/node_modules/bower/lib/node_modules/intersect/README.md +0 -75
- package/http/node_modules/bower/lib/node_modules/intersect/bench.js +0 -13
- package/http/node_modules/bower/lib/node_modules/intersect/component.json +0 -16
- package/http/node_modules/bower/lib/node_modules/intersect/index.js +0 -59
- package/http/node_modules/bower/lib/node_modules/intersect/package.json +0 -40
- package/http/node_modules/bower/lib/node_modules/intersect/test/test.js +0 -74
- package/http/node_modules/bower/lib/node_modules/is-arrayish/.editorconfig +0 -18
- package/http/node_modules/bower/lib/node_modules/is-arrayish/.istanbul.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/is-arrayish/.npmignore +0 -5
- package/http/node_modules/bower/lib/node_modules/is-arrayish/.travis.yml +0 -17
- package/http/node_modules/bower/lib/node_modules/is-arrayish/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/is-arrayish/README.md +0 -16
- package/http/node_modules/bower/lib/node_modules/is-arrayish/index.js +0 -10
- package/http/node_modules/bower/lib/node_modules/is-arrayish/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/is-buffer/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/is-buffer/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/is-buffer/README.md +0 -49
- package/http/node_modules/bower/lib/node_modules/is-buffer/index.js +0 -21
- package/http/node_modules/bower/lib/node_modules/is-buffer/package.json +0 -51
- package/http/node_modules/bower/lib/node_modules/is-buffer/test/basic.js +0 -25
- package/http/node_modules/bower/lib/node_modules/is-builtin-module/index.js +0 -10
- package/http/node_modules/bower/lib/node_modules/is-builtin-module/license +0 -21
- package/http/node_modules/bower/lib/node_modules/is-builtin-module/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/is-builtin-module/readme.md +0 -33
- package/http/node_modules/bower/lib/node_modules/is-finite/index.js +0 -6
- package/http/node_modules/bower/lib/node_modules/is-finite/license +0 -21
- package/http/node_modules/bower/lib/node_modules/is-finite/package.json +0 -36
- package/http/node_modules/bower/lib/node_modules/is-finite/readme.md +0 -28
- package/http/node_modules/bower/lib/node_modules/is-fullwidth-code-point/index.js +0 -46
- package/http/node_modules/bower/lib/node_modules/is-fullwidth-code-point/license +0 -21
- package/http/node_modules/bower/lib/node_modules/is-fullwidth-code-point/package.json +0 -45
- package/http/node_modules/bower/lib/node_modules/is-fullwidth-code-point/readme.md +0 -39
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/.travis.yml +0 -3
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/README.md +0 -200
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/example.js +0 -18
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/formats.js +0 -14
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/index.js +0 -590
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/require.js +0 -12
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/fixtures/cosmic.js +0 -84
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/additionalItems.json +0 -82
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/additionalProperties.json +0 -88
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/allOf.json +0 -112
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/anyOf.json +0 -68
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/bignum.json +0 -107
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/default.json +0 -49
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/definitions.json +0 -32
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/dependencies.json +0 -113
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/enum.json +0 -72
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/format.json +0 -143
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/items.json +0 -46
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/maxItems.json +0 -28
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/maxLength.json +0 -28
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/maxProperties.json +0 -28
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/maximum.json +0 -42
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/minItems.json +0 -28
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/minLength.json +0 -28
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/minProperties.json +0 -28
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/minimum.json +0 -42
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/multipleOf.json +0 -96
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/not.json +0 -96
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndFormat.json +0 -18
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndObject.json +0 -18
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/oneOf.json +0 -68
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/pattern.json +0 -23
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/patternProperties.json +0 -110
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/properties.json +0 -92
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/ref.json +0 -128
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/refRemote.json +0 -74
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/required.json +0 -39
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/type.json +0 -330
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/uniqueItems.json +0 -79
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema.js +0 -23
- package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/misc.js +0 -471
- package/http/node_modules/bower/lib/node_modules/is-npm/index.js +0 -4
- package/http/node_modules/bower/lib/node_modules/is-npm/package.json +0 -32
- package/http/node_modules/bower/lib/node_modules/is-npm/readme.md +0 -30
- package/http/node_modules/bower/lib/node_modules/is-obj/index.js +0 -5
- package/http/node_modules/bower/lib/node_modules/is-obj/license +0 -21
- package/http/node_modules/bower/lib/node_modules/is-obj/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/is-obj/readme.md +0 -34
- package/http/node_modules/bower/lib/node_modules/is-plain-obj/index.js +0 -7
- package/http/node_modules/bower/lib/node_modules/is-plain-obj/license +0 -21
- package/http/node_modules/bower/lib/node_modules/is-plain-obj/package.json +0 -36
- package/http/node_modules/bower/lib/node_modules/is-plain-obj/readme.md +0 -35
- package/http/node_modules/bower/lib/node_modules/is-property/.npmignore +0 -17
- package/http/node_modules/bower/lib/node_modules/is-property/LICENSE +0 -22
- package/http/node_modules/bower/lib/node_modules/is-property/README.md +0 -28
- package/http/node_modules/bower/lib/node_modules/is-property/is-property.js +0 -5
- package/http/node_modules/bower/lib/node_modules/is-property/package.json +0 -36
- package/http/node_modules/bower/lib/node_modules/is-redirect/index.js +0 -14
- package/http/node_modules/bower/lib/node_modules/is-redirect/license +0 -21
- package/http/node_modules/bower/lib/node_modules/is-redirect/package.json +0 -35
- package/http/node_modules/bower/lib/node_modules/is-redirect/readme.md +0 -28
- package/http/node_modules/bower/lib/node_modules/is-retry-allowed/index.js +0 -60
- package/http/node_modules/bower/lib/node_modules/is-retry-allowed/license +0 -21
- package/http/node_modules/bower/lib/node_modules/is-retry-allowed/package.json +0 -29
- package/http/node_modules/bower/lib/node_modules/is-retry-allowed/readme.md +0 -42
- package/http/node_modules/bower/lib/node_modules/is-root/index.js +0 -4
- package/http/node_modules/bower/lib/node_modules/is-root/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/is-root/readme.md +0 -30
- package/http/node_modules/bower/lib/node_modules/is-stream/index.js +0 -21
- package/http/node_modules/bower/lib/node_modules/is-stream/license +0 -21
- package/http/node_modules/bower/lib/node_modules/is-stream/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/is-stream/readme.md +0 -42
- package/http/node_modules/bower/lib/node_modules/is-typedarray/LICENSE.md +0 -18
- package/http/node_modules/bower/lib/node_modules/is-typedarray/README.md +0 -16
- package/http/node_modules/bower/lib/node_modules/is-typedarray/index.js +0 -41
- package/http/node_modules/bower/lib/node_modules/is-typedarray/package.json +0 -30
- package/http/node_modules/bower/lib/node_modules/is-typedarray/test.js +0 -34
- package/http/node_modules/bower/lib/node_modules/is-utf8/LICENSE +0 -9
- package/http/node_modules/bower/lib/node_modules/is-utf8/README.md +0 -16
- package/http/node_modules/bower/lib/node_modules/is-utf8/is-utf8.js +0 -76
- package/http/node_modules/bower/lib/node_modules/is-utf8/package.json +0 -19
- package/http/node_modules/bower/lib/node_modules/isarray/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/isarray/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/isarray/Makefile +0 -6
- package/http/node_modules/bower/lib/node_modules/isarray/README.md +0 -60
- package/http/node_modules/bower/lib/node_modules/isarray/component.json +0 -19
- package/http/node_modules/bower/lib/node_modules/isarray/index.js +0 -5
- package/http/node_modules/bower/lib/node_modules/isarray/package.json +0 -45
- package/http/node_modules/bower/lib/node_modules/isarray/test.js +0 -20
- package/http/node_modules/bower/lib/node_modules/isexe/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/isexe/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/isexe/README.md +0 -51
- package/http/node_modules/bower/lib/node_modules/isexe/index.js +0 -57
- package/http/node_modules/bower/lib/node_modules/isexe/mode.js +0 -41
- package/http/node_modules/bower/lib/node_modules/isexe/package.json +0 -31
- package/http/node_modules/bower/lib/node_modules/isexe/test/basic.js +0 -221
- package/http/node_modules/bower/lib/node_modules/isexe/windows.js +0 -42
- package/http/node_modules/bower/lib/node_modules/isstream/.jshintrc +0 -59
- package/http/node_modules/bower/lib/node_modules/isstream/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/isstream/.travis.yml +0 -12
- package/http/node_modules/bower/lib/node_modules/isstream/LICENSE.md +0 -11
- package/http/node_modules/bower/lib/node_modules/isstream/README.md +0 -66
- package/http/node_modules/bower/lib/node_modules/isstream/isstream.js +0 -27
- package/http/node_modules/bower/lib/node_modules/isstream/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/isstream/test.js +0 -168
- package/http/node_modules/bower/lib/node_modules/jsbn/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/jsbn/LICENSE +0 -40
- package/http/node_modules/bower/lib/node_modules/jsbn/README.md +0 -175
- package/http/node_modules/bower/lib/node_modules/jsbn/example.html +0 -12
- package/http/node_modules/bower/lib/node_modules/jsbn/example.js +0 -3
- package/http/node_modules/bower/lib/node_modules/jsbn/index.js +0 -1357
- package/http/node_modules/bower/lib/node_modules/jsbn/package.json +0 -21
- package/http/node_modules/bower/lib/node_modules/json-schema/README.md +0 -5
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-00/hyper-schema +0 -68
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-00/json-ref +0 -26
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-00/links +0 -33
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-00/schema +0 -155
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-01/hyper-schema +0 -68
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-01/json-ref +0 -26
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-01/links +0 -33
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-01/schema +0 -155
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-02/hyper-schema +0 -68
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-02/json-ref +0 -26
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-02/links +0 -35
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-02/schema +0 -166
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/examples/address +0 -20
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/examples/calendar +0 -53
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/examples/card +0 -105
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/examples/geo +0 -8
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/examples/interfaces +0 -23
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/hyper-schema +0 -60
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/json-ref +0 -26
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/links +0 -35
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/schema +0 -174
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-04/hyper-schema +0 -60
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-04/links +0 -41
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-04/schema +0 -189
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-zyp-json-schema-03.xml +0 -1120
- package/http/node_modules/bower/lib/node_modules/json-schema/draft-zyp-json-schema-04.xml +0 -1072
- package/http/node_modules/bower/lib/node_modules/json-schema/lib/links.js +0 -66
- package/http/node_modules/bower/lib/node_modules/json-schema/lib/validate.js +0 -273
- package/http/node_modules/bower/lib/node_modules/json-schema/package.json +0 -31
- package/http/node_modules/bower/lib/node_modules/json-schema/test/tests.js +0 -95
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/example/key_cmp.js +0 -7
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/example/nested.js +0 -3
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/example/str.js +0 -3
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/example/value_cmp.js +0 -7
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/index.js +0 -84
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/package.json +0 -44
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/readme.markdown +0 -130
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/cmp.js +0 -11
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/nested.js +0 -35
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/replacer.js +0 -74
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/space.js +0 -59
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/str.js +0 -32
- package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/to-json.js +0 -20
- package/http/node_modules/bower/lib/node_modules/json-stringify-safe/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/json-stringify-safe/CHANGELOG.md +0 -14
- package/http/node_modules/bower/lib/node_modules/json-stringify-safe/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/json-stringify-safe/Makefile +0 -35
- package/http/node_modules/bower/lib/node_modules/json-stringify-safe/README.md +0 -52
- package/http/node_modules/bower/lib/node_modules/json-stringify-safe/package.json +0 -31
- package/http/node_modules/bower/lib/node_modules/json-stringify-safe/stringify.js +0 -27
- package/http/node_modules/bower/lib/node_modules/json-stringify-safe/test/mocha.opts +0 -2
- package/http/node_modules/bower/lib/node_modules/json-stringify-safe/test/stringify_test.js +0 -246
- package/http/node_modules/bower/lib/node_modules/jsonify/README.markdown +0 -34
- package/http/node_modules/bower/lib/node_modules/jsonify/index.js +0 -2
- package/http/node_modules/bower/lib/node_modules/jsonify/lib/parse.js +0 -273
- package/http/node_modules/bower/lib/node_modules/jsonify/lib/stringify.js +0 -154
- package/http/node_modules/bower/lib/node_modules/jsonify/package.json +0 -30
- package/http/node_modules/bower/lib/node_modules/jsonify/test/parse.js +0 -16
- package/http/node_modules/bower/lib/node_modules/jsonify/test/stringify.js +0 -15
- package/http/node_modules/bower/lib/node_modules/jsonpointer/LICENSE.md +0 -21
- package/http/node_modules/bower/lib/node_modules/jsonpointer/README.md +0 -39
- package/http/node_modules/bower/lib/node_modules/jsonpointer/jsonpointer.js +0 -93
- package/http/node_modules/bower/lib/node_modules/jsonpointer/package.json +0 -37
- package/http/node_modules/bower/lib/node_modules/jsprim/CHANGES.md +0 -49
- package/http/node_modules/bower/lib/node_modules/jsprim/CONTRIBUTING.md +0 -19
- package/http/node_modules/bower/lib/node_modules/jsprim/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/jsprim/README.md +0 -287
- package/http/node_modules/bower/lib/node_modules/jsprim/lib/jsprim.js +0 -735
- package/http/node_modules/bower/lib/node_modules/jsprim/package.json +0 -20
- package/http/node_modules/bower/lib/node_modules/junk/index.js +0 -30
- package/http/node_modules/bower/lib/node_modules/junk/license +0 -21
- package/http/node_modules/bower/lib/node_modules/junk/package.json +0 -37
- package/http/node_modules/bower/lib/node_modules/junk/readme.md +0 -46
- package/http/node_modules/bower/lib/node_modules/kind-of/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/kind-of/README.md +0 -261
- package/http/node_modules/bower/lib/node_modules/kind-of/index.js +0 -116
- package/http/node_modules/bower/lib/node_modules/kind-of/package.json +0 -90
- package/http/node_modules/bower/lib/node_modules/latest-version/index.js +0 -8
- package/http/node_modules/bower/lib/node_modules/latest-version/license +0 -21
- package/http/node_modules/bower/lib/node_modules/latest-version/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/latest-version/readme.md +0 -40
- package/http/node_modules/bower/lib/node_modules/lazy-cache/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/lazy-cache/README.md +0 -147
- package/http/node_modules/bower/lib/node_modules/lazy-cache/index.js +0 -67
- package/http/node_modules/bower/lib/node_modules/lazy-cache/package.json +0 -58
- package/http/node_modules/bower/lib/node_modules/load-json-file/index.js +0 -21
- package/http/node_modules/bower/lib/node_modules/load-json-file/license +0 -21
- package/http/node_modules/bower/lib/node_modules/load-json-file/package.json +0 -46
- package/http/node_modules/bower/lib/node_modules/load-json-file/readme.md +0 -45
- package/http/node_modules/bower/lib/node_modules/lockfile/.npmignore +0 -3
- package/http/node_modules/bower/lib/node_modules/lockfile/.travis.yml +0 -8
- package/http/node_modules/bower/lib/node_modules/lockfile/CHANGELOG.md +0 -101
- package/http/node_modules/bower/lib/node_modules/lockfile/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/lockfile/README.md +0 -86
- package/http/node_modules/bower/lib/node_modules/lockfile/gen-changelog.sh +0 -9
- package/http/node_modules/bower/lib/node_modules/lockfile/lockfile.js +0 -311
- package/http/node_modules/bower/lib/node_modules/lockfile/package.json +0 -32
- package/http/node_modules/bower/lib/node_modules/lockfile/test/basic.js +0 -292
- package/http/node_modules/bower/lib/node_modules/lockfile/test/fixtures/bad-child.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lockfile/test/fixtures/child.js +0 -3
- package/http/node_modules/bower/lib/node_modules/lockfile/test/retry-time.js +0 -68
- package/http/node_modules/bower/lib/node_modules/lockfile/test/stale-contention.js +0 -85
- package/http/node_modules/bower/lib/node_modules/lockfile/test/unlock-no-cb.js +0 -10
- package/http/node_modules/bower/lib/node_modules/lodash/LICENSE +0 -47
- package/http/node_modules/bower/lib/node_modules/lodash/README.md +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/_DataView.js +0 -7
- package/http/node_modules/bower/lib/node_modules/lodash/_Hash.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/_LazyWrapper.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/_ListCache.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/_LodashWrapper.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_Map.js +0 -7
- package/http/node_modules/bower/lib/node_modules/lodash/_MapCache.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/_Promise.js +0 -7
- package/http/node_modules/bower/lib/node_modules/lodash/_Set.js +0 -7
- package/http/node_modules/bower/lib/node_modules/lodash/_SetCache.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/_Stack.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/_Symbol.js +0 -6
- package/http/node_modules/bower/lib/node_modules/lodash/_Uint8Array.js +0 -6
- package/http/node_modules/bower/lib/node_modules/lodash/_WeakMap.js +0 -7
- package/http/node_modules/bower/lib/node_modules/lodash/_addMapEntry.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_addSetEntry.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_apply.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayAggregator.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayEach.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayEachRight.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayEvery.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayFilter.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayIncludes.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayIncludesWith.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayLikeKeys.js +0 -49
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayMap.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayPush.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayReduce.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayReduceRight.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/_arraySample.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_arraySampleSize.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_arrayShuffle.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_arraySome.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_asciiSize.js +0 -12
- package/http/node_modules/bower/lib/node_modules/lodash/_asciiToArray.js +0 -12
- package/http/node_modules/bower/lib/node_modules/lodash/_asciiWords.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_assignMergeValue.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_assignValue.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/_assocIndexOf.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_baseAggregator.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_baseAssign.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_baseAssignIn.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_baseAssignValue.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/_baseAt.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_baseClamp.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_baseClone.js +0 -153
- package/http/node_modules/bower/lib/node_modules/lodash/_baseConforms.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseConformsTo.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/_baseCreate.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/_baseDelay.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_baseDifference.js +0 -67
- package/http/node_modules/bower/lib/node_modules/lodash/_baseEach.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_baseEachRight.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_baseEvery.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_baseExtremum.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/_baseFill.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/_baseFilter.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_baseFindIndex.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/_baseFindKey.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_baseFlatten.js +0 -38
- package/http/node_modules/bower/lib/node_modules/lodash/_baseFor.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_baseForOwn.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_baseForOwnRight.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_baseForRight.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_baseFunctions.js +0 -19
- package/http/node_modules/bower/lib/node_modules/lodash/_baseGet.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/_baseGetAllKeys.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_baseGetTag.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/_baseGt.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_baseHas.js +0 -19
- package/http/node_modules/bower/lib/node_modules/lodash/_baseHasIn.js +0 -13
- package/http/node_modules/bower/lib/node_modules/lodash/_baseInRange.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIndexOf.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIndexOfWith.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIntersection.js +0 -74
- package/http/node_modules/bower/lib/node_modules/lodash/_baseInverter.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_baseInvoke.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsArguments.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsArrayBuffer.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsDate.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsEqual.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsEqualDeep.js +0 -83
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsMap.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsMatch.js +0 -62
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsNaN.js +0 -12
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsNative.js +0 -47
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsRegExp.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsSet.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIsTypedArray.js +0 -60
- package/http/node_modules/bower/lib/node_modules/lodash/_baseIteratee.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/_baseKeys.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/_baseKeysIn.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/_baseLodash.js +0 -10
- package/http/node_modules/bower/lib/node_modules/lodash/_baseLt.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_baseMap.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_baseMatches.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_baseMatchesProperty.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/_baseMean.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_baseMerge.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/_baseMergeDeep.js +0 -93
- package/http/node_modules/bower/lib/node_modules/lodash/_baseNth.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_baseOrderBy.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/_basePick.js +0 -19
- package/http/node_modules/bower/lib/node_modules/lodash/_basePickBy.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/_baseProperty.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_basePropertyDeep.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_basePropertyOf.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_basePullAll.js +0 -51
- package/http/node_modules/bower/lib/node_modules/lodash/_basePullAt.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/_baseRandom.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseRange.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/_baseReduce.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_baseRepeat.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/_baseRest.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSample.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSampleSize.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSet.js +0 -47
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSetData.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSetToString.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_baseShuffle.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSlice.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSome.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSortBy.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSortedIndex.js +0 -42
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSortedIndexBy.js +0 -64
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSortedUniq.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/_baseSum.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/_baseTimes.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_baseToNumber.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/_baseToPairs.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseToString.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/_baseUnary.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_baseUniq.js +0 -72
- package/http/node_modules/bower/lib/node_modules/lodash/_baseUnset.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_baseUpdate.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_baseValues.js +0 -19
- package/http/node_modules/bower/lib/node_modules/lodash/_baseWhile.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/_baseWrapperValue.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/_baseXor.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/_baseZipObject.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_cacheHas.js +0 -13
- package/http/node_modules/bower/lib/node_modules/lodash/_castArrayLikeObject.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_castFunction.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_castPath.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_castRest.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_castSlice.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_charsEndIndex.js +0 -19
- package/http/node_modules/bower/lib/node_modules/lodash/_charsStartIndex.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_cloneArrayBuffer.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_cloneBuffer.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/_cloneDataView.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_cloneMap.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_cloneRegExp.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_cloneSet.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_cloneSymbol.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_cloneTypedArray.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_compareAscending.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/_compareMultiple.js +0 -44
- package/http/node_modules/bower/lib/node_modules/lodash/_composeArgs.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/_composeArgsRight.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/_copyArray.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_copyObject.js +0 -40
- package/http/node_modules/bower/lib/node_modules/lodash/_copySymbols.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_copySymbolsIn.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_coreJsData.js +0 -6
- package/http/node_modules/bower/lib/node_modules/lodash/_countHolders.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_createAggregator.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_createAssigner.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/_createBaseEach.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/_createBaseFor.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/_createBind.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/_createCaseFirst.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/_createCompounder.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/_createCtor.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/_createCurry.js +0 -46
- package/http/node_modules/bower/lib/node_modules/lodash/_createFind.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/_createFlow.js +0 -78
- package/http/node_modules/bower/lib/node_modules/lodash/_createHybrid.js +0 -92
- package/http/node_modules/bower/lib/node_modules/lodash/_createInverter.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_createMathOperation.js +0 -38
- package/http/node_modules/bower/lib/node_modules/lodash/_createOver.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/_createPadding.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/_createPartial.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/_createRange.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/_createRecurry.js +0 -56
- package/http/node_modules/bower/lib/node_modules/lodash/_createRelationalOperation.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_createRound.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/_createSet.js +0 -19
- package/http/node_modules/bower/lib/node_modules/lodash/_createToPairs.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/_createWrap.js +0 -106
- package/http/node_modules/bower/lib/node_modules/lodash/_customDefaultsAssignIn.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/_customDefaultsMerge.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/_customOmitClone.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_deburrLetter.js +0 -71
- package/http/node_modules/bower/lib/node_modules/lodash/_defineProperty.js +0 -11
- package/http/node_modules/bower/lib/node_modules/lodash/_equalArrays.js +0 -83
- package/http/node_modules/bower/lib/node_modules/lodash/_equalByTag.js +0 -112
- package/http/node_modules/bower/lib/node_modules/lodash/_equalObjects.js +0 -89
- package/http/node_modules/bower/lib/node_modules/lodash/_escapeHtmlChar.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_escapeStringChar.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_flatRest.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_freeGlobal.js +0 -4
- package/http/node_modules/bower/lib/node_modules/lodash/_getAllKeys.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_getAllKeysIn.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_getData.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_getFuncName.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/_getHolder.js +0 -13
- package/http/node_modules/bower/lib/node_modules/lodash/_getMapData.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_getMatchData.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/_getNative.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_getPrototype.js +0 -6
- package/http/node_modules/bower/lib/node_modules/lodash/_getRawTag.js +0 -46
- package/http/node_modules/bower/lib/node_modules/lodash/_getSymbols.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/_getSymbolsIn.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/_getTag.js +0 -58
- package/http/node_modules/bower/lib/node_modules/lodash/_getValue.js +0 -13
- package/http/node_modules/bower/lib/node_modules/lodash/_getView.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/_getWrapDetails.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_hasPath.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/_hasUnicode.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/_hasUnicodeWord.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_hashClear.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_hashDelete.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/_hashGet.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/_hashHas.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_hashSet.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_initCloneArray.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/_initCloneByTag.js +0 -80
- package/http/node_modules/bower/lib/node_modules/lodash/_initCloneObject.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_insertWrapDetails.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_isFlattenable.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_isIndex.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_isIterateeCall.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/_isKey.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/_isKeyable.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_isLaziable.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/_isMaskable.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_isMasked.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_isPrototype.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_isStrictComparable.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_iteratorToArray.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_lazyClone.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_lazyReverse.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_lazyValue.js +0 -69
- package/http/node_modules/bower/lib/node_modules/lodash/_listCacheClear.js +0 -13
- package/http/node_modules/bower/lib/node_modules/lodash/_listCacheDelete.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/_listCacheGet.js +0 -19
- package/http/node_modules/bower/lib/node_modules/lodash/_listCacheHas.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_listCacheSet.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/_mapCacheClear.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_mapCacheDelete.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_mapCacheGet.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_mapCacheHas.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_mapCacheSet.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_mapToArray.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_matchesStrictComparable.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_memoizeCapped.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/_mergeData.js +0 -90
- package/http/node_modules/bower/lib/node_modules/lodash/_metaMap.js +0 -6
- package/http/node_modules/bower/lib/node_modules/lodash/_nativeCreate.js +0 -6
- package/http/node_modules/bower/lib/node_modules/lodash/_nativeKeys.js +0 -6
- package/http/node_modules/bower/lib/node_modules/lodash/_nativeKeysIn.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_nodeUtil.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_objectToString.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/_overArg.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_overRest.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/_parent.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/_reEscape.js +0 -4
- package/http/node_modules/bower/lib/node_modules/lodash/_reEvaluate.js +0 -4
- package/http/node_modules/bower/lib/node_modules/lodash/_reInterpolate.js +0 -4
- package/http/node_modules/bower/lib/node_modules/lodash/_realNames.js +0 -4
- package/http/node_modules/bower/lib/node_modules/lodash/_reorder.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/_replaceHolders.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/_root.js +0 -9
- package/http/node_modules/bower/lib/node_modules/lodash/_setCacheAdd.js +0 -19
- package/http/node_modules/bower/lib/node_modules/lodash/_setCacheHas.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_setData.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/_setToArray.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_setToPairs.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_setToString.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_setWrapToString.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_shortOut.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/_shuffleSelf.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/_stackClear.js +0 -15
- package/http/node_modules/bower/lib/node_modules/lodash/_stackDelete.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_stackGet.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_stackHas.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/_stackSet.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/_strictIndexOf.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/_strictLastIndexOf.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_stringSize.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_stringToArray.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/_stringToPath.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/_toKey.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_toSource.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/_unescapeHtmlChar.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/_unicodeSize.js +0 -44
- package/http/node_modules/bower/lib/node_modules/lodash/_unicodeToArray.js +0 -40
- package/http/node_modules/bower/lib/node_modules/lodash/_unicodeWords.js +0 -69
- package/http/node_modules/bower/lib/node_modules/lodash/_updateWrapDetails.js +0 -46
- package/http/node_modules/bower/lib/node_modules/lodash/_wrapperClone.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/add.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/after.js +0 -42
- package/http/node_modules/bower/lib/node_modules/lodash/array.js +0 -67
- package/http/node_modules/bower/lib/node_modules/lodash/ary.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/assign.js +0 -58
- package/http/node_modules/bower/lib/node_modules/lodash/assignIn.js +0 -40
- package/http/node_modules/bower/lib/node_modules/lodash/assignInWith.js +0 -38
- package/http/node_modules/bower/lib/node_modules/lodash/assignWith.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/at.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/attempt.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/before.js +0 -40
- package/http/node_modules/bower/lib/node_modules/lodash/bind.js +0 -57
- package/http/node_modules/bower/lib/node_modules/lodash/bindAll.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/bindKey.js +0 -68
- package/http/node_modules/bower/lib/node_modules/lodash/camelCase.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/capitalize.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/castArray.js +0 -44
- package/http/node_modules/bower/lib/node_modules/lodash/ceil.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/chain.js +0 -38
- package/http/node_modules/bower/lib/node_modules/lodash/chunk.js +0 -50
- package/http/node_modules/bower/lib/node_modules/lodash/clamp.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/clone.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/cloneDeep.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/cloneDeepWith.js +0 -40
- package/http/node_modules/bower/lib/node_modules/lodash/cloneWith.js +0 -42
- package/http/node_modules/bower/lib/node_modules/lodash/collection.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/commit.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/compact.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/concat.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/cond.js +0 -60
- package/http/node_modules/bower/lib/node_modules/lodash/conforms.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/conformsTo.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/constant.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/core.js +0 -3836
- package/http/node_modules/bower/lib/node_modules/lodash/core.min.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/countBy.js +0 -40
- package/http/node_modules/bower/lib/node_modules/lodash/create.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/curry.js +0 -57
- package/http/node_modules/bower/lib/node_modules/lodash/curryRight.js +0 -54
- package/http/node_modules/bower/lib/node_modules/lodash/date.js +0 -3
- package/http/node_modules/bower/lib/node_modules/lodash/debounce.js +0 -188
- package/http/node_modules/bower/lib/node_modules/lodash/deburr.js +0 -45
- package/http/node_modules/bower/lib/node_modules/lodash/defaultTo.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/defaults.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/defaultsDeep.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/defer.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/delay.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/difference.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/differenceBy.js +0 -44
- package/http/node_modules/bower/lib/node_modules/lodash/differenceWith.js +0 -40
- package/http/node_modules/bower/lib/node_modules/lodash/divide.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/drop.js +0 -38
- package/http/node_modules/bower/lib/node_modules/lodash/dropRight.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/dropRightWhile.js +0 -45
- package/http/node_modules/bower/lib/node_modules/lodash/dropWhile.js +0 -45
- package/http/node_modules/bower/lib/node_modules/lodash/each.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/eachRight.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/endsWith.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/entries.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/entriesIn.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/eq.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/escape.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/escapeRegExp.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/every.js +0 -56
- package/http/node_modules/bower/lib/node_modules/lodash/extend.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/extendWith.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fill.js +0 -45
- package/http/node_modules/bower/lib/node_modules/lodash/filter.js +0 -48
- package/http/node_modules/bower/lib/node_modules/lodash/find.js +0 -42
- package/http/node_modules/bower/lib/node_modules/lodash/findIndex.js +0 -55
- package/http/node_modules/bower/lib/node_modules/lodash/findKey.js +0 -44
- package/http/node_modules/bower/lib/node_modules/lodash/findLast.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/findLastIndex.js +0 -59
- package/http/node_modules/bower/lib/node_modules/lodash/findLastKey.js +0 -44
- package/http/node_modules/bower/lib/node_modules/lodash/first.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/flatMap.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/flatMapDeep.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/flatMapDepth.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/flatten.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/flattenDeep.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/flattenDepth.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/flip.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/floor.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/flow.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/flowRight.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/forEach.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/forEachRight.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/forIn.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/forInRight.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/forOwn.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/forOwnRight.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/fp/F.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/T.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/__.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/_baseConvert.js +0 -568
- package/http/node_modules/bower/lib/node_modules/lodash/fp/_convertBrowser.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/fp/_falseOptions.js +0 -7
- package/http/node_modules/bower/lib/node_modules/lodash/fp/_mapping.js +0 -368
- package/http/node_modules/bower/lib/node_modules/lodash/fp/_util.js +0 -14
- package/http/node_modules/bower/lib/node_modules/lodash/fp/add.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/after.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/all.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/allPass.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/always.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/any.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/anyPass.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/apply.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/array.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/ary.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/assign.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/assignAll.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/assignAllWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/assignIn.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/assignInAll.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/assignInAllWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/assignInWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/assignWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/assoc.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/assocPath.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/at.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/attempt.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/before.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/bind.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/bindAll.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/bindKey.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/camelCase.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/capitalize.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/castArray.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/ceil.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/chain.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/chunk.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/clamp.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/clone.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/cloneDeep.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/cloneDeepWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/cloneWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/collection.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/commit.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/compact.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/complement.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/compose.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/concat.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/cond.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/conforms.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/conformsTo.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/constant.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/contains.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/convert.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/fp/countBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/create.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/curry.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/curryN.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/curryRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/curryRightN.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/date.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/debounce.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/deburr.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/defaultTo.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/defaults.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/defaultsAll.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/defaultsDeep.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/defaultsDeepAll.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/defer.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/delay.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/difference.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/differenceBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/differenceWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/dissoc.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/dissocPath.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/divide.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/drop.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/dropLast.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/dropLastWhile.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/dropRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/dropRightWhile.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/dropWhile.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/each.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/eachRight.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/endsWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/entries.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/entriesIn.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/eq.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/equals.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/escape.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/escapeRegExp.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/every.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/extend.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/extendAll.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/extendAllWith.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/extendWith.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/fill.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/filter.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/find.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/findFrom.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/findIndex.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/findIndexFrom.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/findKey.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/findLast.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/findLastFrom.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/findLastIndex.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/findLastIndexFrom.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/findLastKey.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/first.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/flatMap.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/flatMapDeep.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/flatMapDepth.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/flatten.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/flattenDeep.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/flattenDepth.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/flip.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/floor.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/flow.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/flowRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/forEach.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/forEachRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/forIn.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/forInRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/forOwn.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/forOwnRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/fromPairs.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/function.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/functions.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/functionsIn.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/get.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/getOr.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/groupBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/gt.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/gte.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/has.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/hasIn.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/head.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/identical.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/identity.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/inRange.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/includes.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/includesFrom.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/indexBy.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/indexOf.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/indexOfFrom.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/init.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/initial.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/intersection.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/intersectionBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/intersectionWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/invert.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/invertBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/invertObj.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/invoke.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/invokeArgs.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/invokeArgsMap.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/invokeMap.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isArguments.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isArray.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isArrayBuffer.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isArrayLike.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isArrayLikeObject.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isBoolean.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isBuffer.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isDate.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isElement.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isEmpty.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isEqual.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isEqualWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isError.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isFinite.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isFunction.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isInteger.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isLength.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isMap.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isMatch.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isMatchWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isNaN.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isNative.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isNil.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isNull.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isNumber.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isObject.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isObjectLike.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isPlainObject.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isRegExp.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isSafeInteger.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isSet.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isString.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isSymbol.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isTypedArray.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isUndefined.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isWeakMap.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/isWeakSet.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/iteratee.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/join.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/juxt.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/kebabCase.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/keyBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/keys.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/keysIn.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/lang.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/last.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/lastIndexOf.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/lastIndexOfFrom.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/lowerCase.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/lowerFirst.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/lt.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/lte.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/map.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/mapKeys.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/mapValues.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/matches.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/matchesProperty.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/math.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/max.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/maxBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/mean.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/meanBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/memoize.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/merge.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/mergeAll.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/mergeAllWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/mergeWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/method.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/methodOf.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/min.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/minBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/mixin.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/multiply.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/nAry.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/negate.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/next.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/noop.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/now.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/nth.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/nthArg.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/number.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/object.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/omit.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/omitAll.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/omitBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/once.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/orderBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/over.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/overArgs.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/overEvery.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/overSome.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pad.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/padChars.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/padCharsEnd.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/padCharsStart.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/padEnd.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/padStart.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/parseInt.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/partial.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/partialRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/partition.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/path.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pathEq.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pathOr.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/paths.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pick.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pickAll.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pickBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pipe.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/placeholder.js +0 -6
- package/http/node_modules/bower/lib/node_modules/lodash/fp/plant.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pluck.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/prop.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/propEq.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/propOr.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/property.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/propertyOf.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/props.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pull.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pullAll.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pullAllBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pullAllWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/pullAt.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/random.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/range.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/rangeRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/rangeStep.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/rangeStepRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/rearg.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/reduce.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/reduceRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/reject.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/remove.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/repeat.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/replace.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/rest.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/restFrom.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/result.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/reverse.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/round.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sample.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sampleSize.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/seq.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/set.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/setWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/shuffle.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/size.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/slice.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/snakeCase.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/some.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sortBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedIndex.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedIndexBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedIndexOf.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedLastIndex.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedLastIndexBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedLastIndexOf.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedUniq.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedUniqBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/split.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/spread.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/spreadFrom.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/startCase.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/startsWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/string.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/stubArray.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/stubFalse.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/stubObject.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/stubString.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/stubTrue.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/subtract.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sum.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/sumBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/symmetricDifference.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/symmetricDifferenceBy.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/symmetricDifferenceWith.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/tail.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/take.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/takeLast.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/takeLastWhile.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/takeRight.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/takeRightWhile.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/takeWhile.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/tap.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/template.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/templateSettings.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/throttle.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/thru.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/times.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toArray.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toFinite.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toInteger.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toIterator.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toJSON.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toLength.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toLower.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toNumber.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toPairs.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toPairsIn.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toPath.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toPlainObject.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toSafeInteger.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toString.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/toUpper.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/transform.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/trim.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/trimChars.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/trimCharsEnd.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/trimCharsStart.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/trimEnd.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/trimStart.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/truncate.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/unapply.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/unary.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/unescape.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/union.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/unionBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/unionWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/uniq.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/uniqBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/uniqWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/uniqueId.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/unnest.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/unset.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/unzip.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/unzipWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/update.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/updateWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/upperCase.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/upperFirst.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/useWith.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/util.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fp/value.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/valueOf.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/values.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/valuesIn.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/where.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/whereEq.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/without.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/words.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/wrap.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/wrapperAt.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/wrapperChain.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/wrapperLodash.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/wrapperReverse.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/wrapperValue.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/xor.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/xorBy.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/xorWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/zip.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/zipAll.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/zipObj.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/fp/zipObject.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/zipObjectDeep.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp/zipWith.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/fp.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lodash/fromPairs.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/function.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/functions.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/functionsIn.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/get.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/groupBy.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/gt.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/gte.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/has.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/hasIn.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/head.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/identity.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/inRange.js +0 -55
- package/http/node_modules/bower/lib/node_modules/lodash/includes.js +0 -53
- package/http/node_modules/bower/lib/node_modules/lodash/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/indexOf.js +0 -42
- package/http/node_modules/bower/lib/node_modules/lodash/initial.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/intersection.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/intersectionBy.js +0 -45
- package/http/node_modules/bower/lib/node_modules/lodash/intersectionWith.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/invert.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/invertBy.js +0 -44
- package/http/node_modules/bower/lib/node_modules/lodash/invoke.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/invokeMap.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/isArguments.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/isArray.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/isArrayBuffer.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/isArrayLike.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/isArrayLikeObject.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/isBoolean.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/isBuffer.js +0 -38
- package/http/node_modules/bower/lib/node_modules/lodash/isDate.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/isElement.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/isEmpty.js +0 -77
- package/http/node_modules/bower/lib/node_modules/lodash/isEqual.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/isEqualWith.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/isError.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/isFinite.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/isFunction.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/isInteger.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/isLength.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/isMap.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/isMatch.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/isMatchWith.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/isNaN.js +0 -38
- package/http/node_modules/bower/lib/node_modules/lodash/isNative.js +0 -40
- package/http/node_modules/bower/lib/node_modules/lodash/isNil.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/isNull.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/isNumber.js +0 -38
- package/http/node_modules/bower/lib/node_modules/lodash/isObject.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/isObjectLike.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/isPlainObject.js +0 -62
- package/http/node_modules/bower/lib/node_modules/lodash/isRegExp.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/isSafeInteger.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/isSet.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/isString.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/isSymbol.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/isTypedArray.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/isUndefined.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/isWeakMap.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/isWeakSet.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/iteratee.js +0 -53
- package/http/node_modules/bower/lib/node_modules/lodash/join.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/kebabCase.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/keyBy.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/keys.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/keysIn.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/lang.js +0 -58
- package/http/node_modules/bower/lib/node_modules/lodash/last.js +0 -20
- package/http/node_modules/bower/lib/node_modules/lodash/lastIndexOf.js +0 -46
- package/http/node_modules/bower/lib/node_modules/lodash/lodash.js +0 -17084
- package/http/node_modules/bower/lib/node_modules/lodash/lodash.min.js +0 -136
- package/http/node_modules/bower/lib/node_modules/lodash/lowerCase.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/lowerFirst.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/lt.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/lte.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/map.js +0 -53
- package/http/node_modules/bower/lib/node_modules/lodash/mapKeys.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/mapValues.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/matches.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/matchesProperty.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/math.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/max.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/maxBy.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/mean.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/meanBy.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/memoize.js +0 -73
- package/http/node_modules/bower/lib/node_modules/lodash/merge.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/mergeWith.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/method.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/methodOf.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/min.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/minBy.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/mixin.js +0 -74
- package/http/node_modules/bower/lib/node_modules/lodash/multiply.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/negate.js +0 -40
- package/http/node_modules/bower/lib/node_modules/lodash/next.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/noop.js +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/now.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/nth.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/nthArg.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/number.js +0 -5
- package/http/node_modules/bower/lib/node_modules/lodash/object.js +0 -49
- package/http/node_modules/bower/lib/node_modules/lodash/omit.js +0 -57
- package/http/node_modules/bower/lib/node_modules/lodash/omitBy.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/once.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/orderBy.js +0 -47
- package/http/node_modules/bower/lib/node_modules/lodash/over.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/overArgs.js +0 -61
- package/http/node_modules/bower/lib/node_modules/lodash/overEvery.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/overSome.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/package.json +0 -17
- package/http/node_modules/bower/lib/node_modules/lodash/pad.js +0 -49
- package/http/node_modules/bower/lib/node_modules/lodash/padEnd.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/padStart.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/parseInt.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/partial.js +0 -50
- package/http/node_modules/bower/lib/node_modules/lodash/partialRight.js +0 -49
- package/http/node_modules/bower/lib/node_modules/lodash/partition.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/pick.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/pickBy.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/plant.js +0 -48
- package/http/node_modules/bower/lib/node_modules/lodash/property.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/propertyOf.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/pull.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/pullAll.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/pullAllBy.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/pullAllWith.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/pullAt.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/random.js +0 -82
- package/http/node_modules/bower/lib/node_modules/lodash/range.js +0 -46
- package/http/node_modules/bower/lib/node_modules/lodash/rangeRight.js +0 -41
- package/http/node_modules/bower/lib/node_modules/lodash/rearg.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/reduce.js +0 -51
- package/http/node_modules/bower/lib/node_modules/lodash/reduceRight.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/reject.js +0 -46
- package/http/node_modules/bower/lib/node_modules/lodash/remove.js +0 -53
- package/http/node_modules/bower/lib/node_modules/lodash/repeat.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/replace.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/rest.js +0 -40
- package/http/node_modules/bower/lib/node_modules/lodash/result.js +0 -56
- package/http/node_modules/bower/lib/node_modules/lodash/reverse.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/round.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/sample.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/sampleSize.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/seq.js +0 -16
- package/http/node_modules/bower/lib/node_modules/lodash/set.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/setWith.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/shuffle.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/size.js +0 -46
- package/http/node_modules/bower/lib/node_modules/lodash/slice.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/snakeCase.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/some.js +0 -51
- package/http/node_modules/bower/lib/node_modules/lodash/sortBy.js +0 -48
- package/http/node_modules/bower/lib/node_modules/lodash/sortedIndex.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/sortedIndexBy.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/sortedIndexOf.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/sortedLastIndex.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/sortedLastIndexBy.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/sortedLastIndexOf.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/sortedUniq.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/sortedUniqBy.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/split.js +0 -52
- package/http/node_modules/bower/lib/node_modules/lodash/spread.js +0 -63
- package/http/node_modules/bower/lib/node_modules/lodash/startCase.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/startsWith.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/string.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/stubArray.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/stubFalse.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/stubObject.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/stubString.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/stubTrue.js +0 -18
- package/http/node_modules/bower/lib/node_modules/lodash/subtract.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/sum.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/sumBy.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/tail.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/take.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/takeRight.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/takeRightWhile.js +0 -45
- package/http/node_modules/bower/lib/node_modules/lodash/takeWhile.js +0 -45
- package/http/node_modules/bower/lib/node_modules/lodash/tap.js +0 -29
- package/http/node_modules/bower/lib/node_modules/lodash/template.js +0 -238
- package/http/node_modules/bower/lib/node_modules/lodash/templateSettings.js +0 -67
- package/http/node_modules/bower/lib/node_modules/lodash/throttle.js +0 -69
- package/http/node_modules/bower/lib/node_modules/lodash/thru.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/times.js +0 -51
- package/http/node_modules/bower/lib/node_modules/lodash/toArray.js +0 -58
- package/http/node_modules/bower/lib/node_modules/lodash/toFinite.js +0 -42
- package/http/node_modules/bower/lib/node_modules/lodash/toInteger.js +0 -36
- package/http/node_modules/bower/lib/node_modules/lodash/toIterator.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/toJSON.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/toLength.js +0 -38
- package/http/node_modules/bower/lib/node_modules/lodash/toLower.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/toNumber.js +0 -66
- package/http/node_modules/bower/lib/node_modules/lodash/toPairs.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/toPairsIn.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/toPath.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/toPlainObject.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/toSafeInteger.js +0 -37
- package/http/node_modules/bower/lib/node_modules/lodash/toString.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/toUpper.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/transform.js +0 -65
- package/http/node_modules/bower/lib/node_modules/lodash/trim.js +0 -49
- package/http/node_modules/bower/lib/node_modules/lodash/trimEnd.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/trimStart.js +0 -43
- package/http/node_modules/bower/lib/node_modules/lodash/truncate.js +0 -111
- package/http/node_modules/bower/lib/node_modules/lodash/unary.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/unescape.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/union.js +0 -26
- package/http/node_modules/bower/lib/node_modules/lodash/unionBy.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/unionWith.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/uniq.js +0 -25
- package/http/node_modules/bower/lib/node_modules/lodash/uniqBy.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/uniqWith.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/uniqueId.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/unset.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/unzip.js +0 -45
- package/http/node_modules/bower/lib/node_modules/lodash/unzipWith.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/update.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/updateWith.js +0 -33
- package/http/node_modules/bower/lib/node_modules/lodash/upperCase.js +0 -27
- package/http/node_modules/bower/lib/node_modules/lodash/upperFirst.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/util.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/value.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/valueOf.js +0 -1
- package/http/node_modules/bower/lib/node_modules/lodash/values.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/valuesIn.js +0 -32
- package/http/node_modules/bower/lib/node_modules/lodash/without.js +0 -31
- package/http/node_modules/bower/lib/node_modules/lodash/words.js +0 -35
- package/http/node_modules/bower/lib/node_modules/lodash/wrap.js +0 -30
- package/http/node_modules/bower/lib/node_modules/lodash/wrapperAt.js +0 -48
- package/http/node_modules/bower/lib/node_modules/lodash/wrapperChain.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/wrapperLodash.js +0 -147
- package/http/node_modules/bower/lib/node_modules/lodash/wrapperReverse.js +0 -44
- package/http/node_modules/bower/lib/node_modules/lodash/wrapperValue.js +0 -21
- package/http/node_modules/bower/lib/node_modules/lodash/xor.js +0 -28
- package/http/node_modules/bower/lib/node_modules/lodash/xorBy.js +0 -39
- package/http/node_modules/bower/lib/node_modules/lodash/xorWith.js +0 -34
- package/http/node_modules/bower/lib/node_modules/lodash/zip.js +0 -22
- package/http/node_modules/bower/lib/node_modules/lodash/zipObject.js +0 -24
- package/http/node_modules/bower/lib/node_modules/lodash/zipObjectDeep.js +0 -23
- package/http/node_modules/bower/lib/node_modules/lodash/zipWith.js +0 -32
- package/http/node_modules/bower/lib/node_modules/longest/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/longest/README.md +0 -65
- package/http/node_modules/bower/lib/node_modules/longest/index.js +0 -37
- package/http/node_modules/bower/lib/node_modules/longest/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/loud-rejection/api.js +0 -11
- package/http/node_modules/bower/lib/node_modules/loud-rejection/index.js +0 -36
- package/http/node_modules/bower/lib/node_modules/loud-rejection/license +0 -21
- package/http/node_modules/bower/lib/node_modules/loud-rejection/package.json +0 -59
- package/http/node_modules/bower/lib/node_modules/loud-rejection/readme.md +0 -68
- package/http/node_modules/bower/lib/node_modules/loud-rejection/register.js +0 -2
- package/http/node_modules/bower/lib/node_modules/lowercase-keys/index.js +0 -11
- package/http/node_modules/bower/lib/node_modules/lowercase-keys/package.json +0 -35
- package/http/node_modules/bower/lib/node_modules/lowercase-keys/readme.md +0 -33
- package/http/node_modules/bower/lib/node_modules/lru-cache/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/lru-cache/.travis.yml +0 -8
- package/http/node_modules/bower/lib/node_modules/lru-cache/CONTRIBUTORS +0 -14
- package/http/node_modules/bower/lib/node_modules/lru-cache/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/lru-cache/README.md +0 -137
- package/http/node_modules/bower/lib/node_modules/lru-cache/lib/lru-cache.js +0 -334
- package/http/node_modules/bower/lib/node_modules/lru-cache/package.json +0 -21
- package/http/node_modules/bower/lib/node_modules/lru-cache/test/basic.js +0 -396
- package/http/node_modules/bower/lib/node_modules/lru-cache/test/foreach.js +0 -120
- package/http/node_modules/bower/lib/node_modules/lru-cache/test/memory-leak.js +0 -51
- package/http/node_modules/bower/lib/node_modules/lru-cache/test/serialize.js +0 -216
- package/http/node_modules/bower/lib/node_modules/map-obj/index.js +0 -13
- package/http/node_modules/bower/lib/node_modules/map-obj/license +0 -21
- package/http/node_modules/bower/lib/node_modules/map-obj/package.json +0 -36
- package/http/node_modules/bower/lib/node_modules/map-obj/readme.md +0 -29
- package/http/node_modules/bower/lib/node_modules/md5-hex/browser.js +0 -10
- package/http/node_modules/bower/lib/node_modules/md5-hex/index.js +0 -23
- package/http/node_modules/bower/lib/node_modules/md5-hex/license +0 -21
- package/http/node_modules/bower/lib/node_modules/md5-hex/package.json +0 -39
- package/http/node_modules/bower/lib/node_modules/md5-hex/readme.md +0 -44
- package/http/node_modules/bower/lib/node_modules/md5-o-matic/.npmignore +0 -25
- package/http/node_modules/bower/lib/node_modules/md5-o-matic/.travis.yml +0 -8
- package/http/node_modules/bower/lib/node_modules/md5-o-matic/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/md5-o-matic/README.md +0 -35
- package/http/node_modules/bower/lib/node_modules/md5-o-matic/lib/md5omatic.js +0 -201
- package/http/node_modules/bower/lib/node_modules/md5-o-matic/package.json +0 -44
- package/http/node_modules/bower/lib/node_modules/md5-o-matic/test/main.js +0 -25
- package/http/node_modules/bower/lib/node_modules/meow/index.js +0 -82
- package/http/node_modules/bower/lib/node_modules/meow/license +0 -21
- package/http/node_modules/bower/lib/node_modules/meow/package.json +0 -58
- package/http/node_modules/bower/lib/node_modules/meow/readme.md +0 -159
- package/http/node_modules/bower/lib/node_modules/mime/.npmignore +0 -0
- package/http/node_modules/bower/lib/node_modules/mime/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/mime/README.md +0 -90
- package/http/node_modules/bower/lib/node_modules/mime/build/build.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mime/build/test.js +0 -60
- package/http/node_modules/bower/lib/node_modules/mime/cli.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mime/mime.js +0 -108
- package/http/node_modules/bower/lib/node_modules/mime/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/mime/types.json +0 -1
- package/http/node_modules/bower/lib/node_modules/mime-db/HISTORY.md +0 -343
- package/http/node_modules/bower/lib/node_modules/mime-db/LICENSE +0 -22
- package/http/node_modules/bower/lib/node_modules/mime-db/README.md +0 -94
- package/http/node_modules/bower/lib/node_modules/mime-db/db.json +0 -6966
- package/http/node_modules/bower/lib/node_modules/mime-db/index.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mime-db/package.json +0 -57
- package/http/node_modules/bower/lib/node_modules/mime-types/HISTORY.md +0 -247
- package/http/node_modules/bower/lib/node_modules/mime-types/LICENSE +0 -23
- package/http/node_modules/bower/lib/node_modules/mime-types/README.md +0 -108
- package/http/node_modules/bower/lib/node_modules/mime-types/index.js +0 -188
- package/http/node_modules/bower/lib/node_modules/mime-types/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/minimatch/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/minimatch/README.md +0 -209
- package/http/node_modules/bower/lib/node_modules/minimatch/minimatch.js +0 -923
- package/http/node_modules/bower/lib/node_modules/minimatch/package.json +0 -30
- package/http/node_modules/bower/lib/node_modules/minimist/.travis.yml +0 -8
- package/http/node_modules/bower/lib/node_modules/minimist/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/minimist/example/parse.js +0 -2
- package/http/node_modules/bower/lib/node_modules/minimist/index.js +0 -236
- package/http/node_modules/bower/lib/node_modules/minimist/package.json +0 -45
- package/http/node_modules/bower/lib/node_modules/minimist/readme.markdown +0 -91
- package/http/node_modules/bower/lib/node_modules/minimist/test/all_bool.js +0 -32
- package/http/node_modules/bower/lib/node_modules/minimist/test/bool.js +0 -166
- package/http/node_modules/bower/lib/node_modules/minimist/test/dash.js +0 -31
- package/http/node_modules/bower/lib/node_modules/minimist/test/default_bool.js +0 -35
- package/http/node_modules/bower/lib/node_modules/minimist/test/dotted.js +0 -22
- package/http/node_modules/bower/lib/node_modules/minimist/test/kv_short.js +0 -16
- package/http/node_modules/bower/lib/node_modules/minimist/test/long.js +0 -31
- package/http/node_modules/bower/lib/node_modules/minimist/test/num.js +0 -36
- package/http/node_modules/bower/lib/node_modules/minimist/test/parse.js +0 -197
- package/http/node_modules/bower/lib/node_modules/minimist/test/parse_modified.js +0 -9
- package/http/node_modules/bower/lib/node_modules/minimist/test/short.js +0 -67
- package/http/node_modules/bower/lib/node_modules/minimist/test/stop_early.js +0 -15
- package/http/node_modules/bower/lib/node_modules/minimist/test/unknown.js +0 -102
- package/http/node_modules/bower/lib/node_modules/minimist/test/whitespace.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mkdirp/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/mkdirp/.travis.yml +0 -5
- package/http/node_modules/bower/lib/node_modules/mkdirp/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/mkdirp/bin/cmd.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mkdirp/bin/usage.txt +0 -12
- package/http/node_modules/bower/lib/node_modules/mkdirp/examples/pow.js +0 -6
- package/http/node_modules/bower/lib/node_modules/mkdirp/index.js +0 -97
- package/http/node_modules/bower/lib/node_modules/mkdirp/package.json +0 -27
- package/http/node_modules/bower/lib/node_modules/mkdirp/readme.markdown +0 -100
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/chmod.js +0 -38
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/clobber.js +0 -37
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/mkdirp.js +0 -26
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/opts_fs.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/opts_fs_sync.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/perm.js +0 -30
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/perm_sync.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/race.js +0 -40
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/rel.js +0 -30
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/return.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/return_sync.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/root.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/sync.js +0 -30
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/umask.js +0 -26
- package/http/node_modules/bower/lib/node_modules/mkdirp/test/umask_sync.js +0 -30
- package/http/node_modules/bower/lib/node_modules/mkpath/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/mkpath/LICENSE +0 -7
- package/http/node_modules/bower/lib/node_modules/mkpath/README.md +0 -27
- package/http/node_modules/bower/lib/node_modules/mkpath/mkpath.js +0 -59
- package/http/node_modules/bower/lib/node_modules/mkpath/package.json +0 -25
- package/http/node_modules/bower/lib/node_modules/mkpath/test/chmod.js +0 -42
- package/http/node_modules/bower/lib/node_modules/mkpath/test/clobber.js +0 -41
- package/http/node_modules/bower/lib/node_modules/mkpath/test/mkpath.js +0 -32
- package/http/node_modules/bower/lib/node_modules/mkpath/test/perm.js +0 -36
- package/http/node_modules/bower/lib/node_modules/mkpath/test/perm_sync.js +0 -43
- package/http/node_modules/bower/lib/node_modules/mkpath/test/rel.js +0 -36
- package/http/node_modules/bower/lib/node_modules/mkpath/test/root.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mkpath/test/sync.js +0 -36
- package/http/node_modules/bower/lib/node_modules/mkpath/test/umask.js +0 -32
- package/http/node_modules/bower/lib/node_modules/mkpath/test/umask_sync.js +0 -36
- package/http/node_modules/bower/lib/node_modules/mout/.editorconfig +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/.jshintrc +0 -69
- package/http/node_modules/bower/lib/node_modules/mout/.npmignore +0 -30
- package/http/node_modules/bower/lib/node_modules/mout/.travis.yml +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/CHANGELOG.md +0 -189
- package/http/node_modules/bower/lib/node_modules/mout/CONTRIBUTING.md +0 -61
- package/http/node_modules/bower/lib/node_modules/mout/LICENSE.md +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/README.md +0 -63
- package/http/node_modules/bower/lib/node_modules/mout/array/append.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/array/collect.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/array/combine.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/array/compact.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/array/contains.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/array/difference.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/array/equals.js +0 -30
- package/http/node_modules/bower/lib/node_modules/mout/array/every.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/array/filter.js +0 -26
- package/http/node_modules/bower/lib/node_modules/mout/array/find.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/array/findIndex.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/array/findLast.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/array/findLastIndex.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mout/array/flatten.js +0 -45
- package/http/node_modules/bower/lib/node_modules/mout/array/forEach.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/array/groupBy.js +0 -30
- package/http/node_modules/bower/lib/node_modules/mout/array/indexOf.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/array/insert.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/array/intersection.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mout/array/invoke.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/array/join.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/array/last.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/array/lastIndexOf.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/array/map.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/array/max.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mout/array/min.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mout/array/pick.js +0 -31
- package/http/node_modules/bower/lib/node_modules/mout/array/pluck.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/array/range.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/array/reduce.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mout/array/reduceRight.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mout/array/reject.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/array/remove.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/array/removeAll.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/array/reverse.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/array/shuffle.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/array/slice.js +0 -35
- package/http/node_modules/bower/lib/node_modules/mout/array/some.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/array/sort.js +0 -55
- package/http/node_modules/bower/lib/node_modules/mout/array/sortBy.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/array/split.js +0 -35
- package/http/node_modules/bower/lib/node_modules/mout/array/take.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mout/array/toLookup.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/array/union.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/array/unique.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/array/xor.js +0 -26
- package/http/node_modules/bower/lib/node_modules/mout/array/zip.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/array.js +0 -55
- package/http/node_modules/bower/lib/node_modules/mout/collection/contains.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/collection/every.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/collection/filter.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/collection/find.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/collection/forEach.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/collection/make_.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/collection/map.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/collection/max.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/collection/min.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/collection/pluck.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/collection/reduce.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/collection/reject.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/collection/size.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/collection/some.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/collection.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/date/dayOfTheYear.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/date/diff.js +0 -130
- package/http/node_modules/bower/lib/node_modules/mout/date/i18n/de-DE.js +0 -61
- package/http/node_modules/bower/lib/node_modules/mout/date/i18n/en-US.js +0 -61
- package/http/node_modules/bower/lib/node_modules/mout/date/i18n/pt-BR.js +0 -61
- package/http/node_modules/bower/lib/node_modules/mout/date/i18n_.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/date/isLeapYear.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/date/isSame.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/date/parseIso.js +0 -146
- package/http/node_modules/bower/lib/node_modules/mout/date/quarter.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/date/startOf.js +0 -54
- package/http/node_modules/bower/lib/node_modules/mout/date/strftime.js +0 -121
- package/http/node_modules/bower/lib/node_modules/mout/date/timezoneAbbr.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/date/timezoneOffset.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/date/totalDaysInMonth.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/date/totalDaysInYear.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/date/weekOfTheYear.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/date.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/doc/array.md +0 -982
- package/http/node_modules/bower/lib/node_modules/mout/doc/collection.md +0 -233
- package/http/node_modules/bower/lib/node_modules/mout/doc/date.md +0 -307
- package/http/node_modules/bower/lib/node_modules/mout/doc/function.md +0 -293
- package/http/node_modules/bower/lib/node_modules/mout/doc/lang.md +0 -516
- package/http/node_modules/bower/lib/node_modules/mout/doc/math.md +0 -303
- package/http/node_modules/bower/lib/node_modules/mout/doc/number.md +0 -279
- package/http/node_modules/bower/lib/node_modules/mout/doc/object.md +0 -811
- package/http/node_modules/bower/lib/node_modules/mout/doc/queryString.md +0 -115
- package/http/node_modules/bower/lib/node_modules/mout/doc/random.md +0 -256
- package/http/node_modules/bower/lib/node_modules/mout/doc/string.md +0 -626
- package/http/node_modules/bower/lib/node_modules/mout/doc/time.md +0 -64
- package/http/node_modules/bower/lib/node_modules/mout/function/awaitDelay.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/function/bind.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/function/compose.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/function/constant.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/function/debounce.js +0 -32
- package/http/node_modules/bower/lib/node_modules/mout/function/func.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/function/identity.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/function/makeIterator_.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mout/function/partial.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/function/prop.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/function/series.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/function/throttle.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mout/function/timeout.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/function/times.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/function/wrap.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/function.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/index.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/lang/GLOBAL.js +0 -7
- package/http/node_modules/bower/lib/node_modules/mout/lang/clone.js +0 -49
- package/http/node_modules/bower/lib/node_modules/mout/lang/createObject.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/lang/ctorApply.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/lang/deepClone.js +0 -48
- package/http/node_modules/bower/lib/node_modules/mout/lang/deepEquals.js +0 -30
- package/http/node_modules/bower/lib/node_modules/mout/lang/defaults.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/lang/inheritPrototype.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/lang/is.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/lang/isArguments.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/lang/isArray.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/lang/isBoolean.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/lang/isDate.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/lang/isEmpty.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mout/lang/isFinite.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/lang/isFunction.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/lang/isInteger.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/lang/isKind.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/lang/isNaN.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/lang/isNull.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/lang/isNumber.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/lang/isObject.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/lang/isPlainObject.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/lang/isPrimitive.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/lang/isRegExp.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/lang/isString.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/lang/isUndefined.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/lang/isnt.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/lang/kindOf.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/lang/toArray.js +0 -30
- package/http/node_modules/bower/lib/node_modules/mout/lang/toNumber.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/lang/toString.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/lang.js +0 -40
- package/http/node_modules/bower/lib/node_modules/mout/math/ceil.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/math/clamp.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/math/countSteps.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/math/floor.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/math/inRange.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/math/isNear.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/math/lerp.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/math/loop.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/math/map.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/math/norm.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/math/round.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/math.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/number/MAX_INT.js +0 -6
- package/http/node_modules/bower/lib/node_modules/mout/number/MAX_SAFE_INTEGER.js +0 -7
- package/http/node_modules/bower/lib/node_modules/mout/number/MAX_UINT.js +0 -6
- package/http/node_modules/bower/lib/node_modules/mout/number/MIN_INT.js +0 -6
- package/http/node_modules/bower/lib/node_modules/mout/number/abbreviate.js +0 -35
- package/http/node_modules/bower/lib/node_modules/mout/number/currencyFormat.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/number/enforcePrecision.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/number/isNaN.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/number/nth.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/number/ordinal.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/number/pad.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/number/rol.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/number/ror.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/number/sign.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/number/toInt.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/number/toUInt.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/number/toUInt31.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/number.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/object/bindAll.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/object/contains.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/object/deepFillIn.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mout/object/deepMatches.js +0 -55
- package/http/node_modules/bower/lib/node_modules/mout/object/deepMixIn.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mout/object/equals.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mout/object/every.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/object/fillIn.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/object/filter.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/object/find.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/object/flatten.js +0 -38
- package/http/node_modules/bower/lib/node_modules/mout/object/forIn.js +0 -76
- package/http/node_modules/bower/lib/node_modules/mout/object/forOwn.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/object/functions.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/object/get.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/object/has.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/object/hasOwn.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/object/keys.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/object/map.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/object/matches.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/object/max.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/object/merge.js +0 -40
- package/http/node_modules/bower/lib/node_modules/mout/object/min.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/object/mixIn.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/object/namespace.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/object/omit.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/object/pick.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/object/pluck.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/object/reduce.js +0 -29
- package/http/node_modules/bower/lib/node_modules/mout/object/reject.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/object/result.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/object/set.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/object/size.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/object/some.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/object/unset.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/object/values.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/object.js +0 -44
- package/http/node_modules/bower/lib/node_modules/mout/package.json +0 -94
- package/http/node_modules/bower/lib/node_modules/mout/queryString/contains.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/queryString/decode.js +0 -36
- package/http/node_modules/bower/lib/node_modules/mout/queryString/encode.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/queryString/getParam.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/queryString/getQuery.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/queryString/parse.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/queryString/setParam.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/queryString.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/random/choice.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/random/guid.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mout/random/rand.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/random/randBit.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/random/randBool.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/random/randHex.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/random/randInt.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/random/randSign.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/random/randString.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/random/random.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/random.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/array/append.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/src/array/collect.js +0 -26
- package/http/node_modules/bower/lib/node_modules/mout/src/array/combine.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/src/array/compact.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/array/contains.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/src/array/difference.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/src/array/equals.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/src/array/every.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/src/array/filter.js +0 -26
- package/http/node_modules/bower/lib/node_modules/mout/src/array/find.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/array/findIndex.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/array/findLast.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/array/findLastIndex.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mout/src/array/flatten.js +0 -44
- package/http/node_modules/bower/lib/node_modules/mout/src/array/forEach.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/array/groupBy.js +0 -32
- package/http/node_modules/bower/lib/node_modules/mout/src/array/indexOf.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/src/array/insert.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/array/intersection.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/array/invoke.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/array/join.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/src/array/last.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/array/lastIndexOf.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/src/array/map.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/src/array/max.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mout/src/array/min.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mout/src/array/pick.js +0 -31
- package/http/node_modules/bower/lib/node_modules/mout/src/array/pluck.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/array/range.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/src/array/reduce.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mout/src/array/reduceRight.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mout/src/array/reject.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/src/array/remove.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/array/removeAll.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/array/reverse.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/array/shuffle.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/src/array/slice.js +0 -35
- package/http/node_modules/bower/lib/node_modules/mout/src/array/some.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/src/array/sort.js +0 -55
- package/http/node_modules/bower/lib/node_modules/mout/src/array/sortBy.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/array/split.js +0 -35
- package/http/node_modules/bower/lib/node_modules/mout/src/array/take.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mout/src/array/toLookup.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/src/array/union.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/array/unique.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/src/array/xor.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mout/src/array/zip.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/src/array.js +0 -55
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/contains.js +0 -7
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/every.js +0 -7
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/filter.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/find.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/forEach.js +0 -7
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/make_.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/map.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/max.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/min.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/pluck.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/reduce.js +0 -7
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/reject.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/size.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/collection/some.js +0 -7
- package/http/node_modules/bower/lib/node_modules/mout/src/collection.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/src/date/dayOfTheYear.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/date/diff.js +0 -128
- package/http/node_modules/bower/lib/node_modules/mout/src/date/i18n/de-DE.js +0 -61
- package/http/node_modules/bower/lib/node_modules/mout/src/date/i18n/en-US.js +0 -61
- package/http/node_modules/bower/lib/node_modules/mout/src/date/i18n/pt-BR.js +0 -61
- package/http/node_modules/bower/lib/node_modules/mout/src/date/i18n_.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/date/isLeapYear.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/date/isSame.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/date/parseIso.js +0 -146
- package/http/node_modules/bower/lib/node_modules/mout/src/date/quarter.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/date/startOf.js +0 -54
- package/http/node_modules/bower/lib/node_modules/mout/src/date/strftime.js +0 -115
- package/http/node_modules/bower/lib/node_modules/mout/src/date/timezoneAbbr.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/src/date/timezoneOffset.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/date/totalDaysInMonth.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/src/date/totalDaysInYear.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/date/weekOfTheYear.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/date.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/src/function/awaitDelay.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/function/bind.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/src/function/compose.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/function/constant.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/function/debounce.js +0 -32
- package/http/node_modules/bower/lib/node_modules/mout/src/function/func.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/function/identity.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/function/makeIterator_.js +0 -32
- package/http/node_modules/bower/lib/node_modules/mout/src/function/partial.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/function/prop.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/function/series.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/src/function/throttle.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mout/src/function/timeout.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/src/function/times.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/src/function/wrap.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/function.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/index.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/GLOBAL.js +0 -7
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/clone.js +0 -47
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/createObject.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/ctorApply.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/deepClone.js +0 -45
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/deepEquals.js +0 -26
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/defaults.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/inheritPrototype.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/is.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isArguments.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isArray.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isBoolean.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isDate.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isEmpty.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isFinite.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isFunction.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isInteger.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isKind.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isNaN.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isNull.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isNumber.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isObject.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isPlainObject.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isPrimitive.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isRegExp.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isString.js +0 -8
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isUndefined.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/isnt.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/kindOf.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/toArray.js +0 -29
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/toNumber.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/lang/toString.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/lang.js +0 -40
- package/http/node_modules/bower/lib/node_modules/mout/src/math/ceil.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/math/clamp.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/src/math/countSteps.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/math/floor.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/src/math/inRange.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/math/isNear.js +0 -9
- package/http/node_modules/bower/lib/node_modules/mout/src/math/lerp.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/math/loop.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/src/math/map.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/src/math/norm.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/math/round.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/math.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/src/number/MAX_INT.js +0 -6
- package/http/node_modules/bower/lib/node_modules/mout/src/number/MAX_SAFE_INTEGER.js +0 -7
- package/http/node_modules/bower/lib/node_modules/mout/src/number/MAX_UINT.js +0 -6
- package/http/node_modules/bower/lib/node_modules/mout/src/number/MIN_INT.js +0 -6
- package/http/node_modules/bower/lib/node_modules/mout/src/number/abbreviate.js +0 -35
- package/http/node_modules/bower/lib/node_modules/mout/src/number/currencyFormat.js +0 -27
- package/http/node_modules/bower/lib/node_modules/mout/src/number/enforcePrecision.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/number/isNaN.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/number/nth.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/src/number/ordinal.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/number/pad.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/number/rol.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/src/number/ror.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/src/number/sign.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/number/toInt.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/src/number/toUInt.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/number/toUInt31.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/number.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/src/object/bindAll.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/object/contains.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/object/deepFillIn.js +0 -32
- package/http/node_modules/bower/lib/node_modules/mout/src/object/deepMatches.js +0 -54
- package/http/node_modules/bower/lib/node_modules/mout/src/object/deepMixIn.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mout/src/object/equals.js +0 -30
- package/http/node_modules/bower/lib/node_modules/mout/src/object/every.js +0 -22
- package/http/node_modules/bower/lib/node_modules/mout/src/object/fillIn.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/src/object/filter.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/src/object/find.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/object/flatten.js +0 -37
- package/http/node_modules/bower/lib/node_modules/mout/src/object/forIn.js +0 -76
- package/http/node_modules/bower/lib/node_modules/mout/src/object/forOwn.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/object/functions.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/object/get.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/object/has.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/object/hasOwn.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/object/keys.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/object/map.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/src/object/matches.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/object/max.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/object/merge.js +0 -38
- package/http/node_modules/bower/lib/node_modules/mout/src/object/min.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/object/mixIn.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/src/object/namespace.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/src/object/omit.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/object/pick.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/object/pluck.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/object/reduce.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/src/object/reject.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/object/result.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/object/set.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/src/object/size.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/object/some.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/object/unset.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/object/values.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/object.js +0 -44
- package/http/node_modules/bower/lib/node_modules/mout/src/queryString/contains.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/queryString/decode.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mout/src/queryString/encode.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/src/queryString/getParam.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/queryString/getQuery.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/queryString/parse.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/queryString/setParam.js +0 -28
- package/http/node_modules/bower/lib/node_modules/mout/src/queryString.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/src/random/choice.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/random/guid.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/random/rand.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/random/randBit.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/random/randBool.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/random/randHex.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/src/random/randInt.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/random/randSign.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/random/randString.js +0 -29
- package/http/node_modules/bower/lib/node_modules/mout/src/random/random.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/random.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/string/WHITE_SPACES.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/string/camelCase.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/string/contains.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/string/crop.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/string/endsWith.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/string/escapeHtml.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/string/escapeRegExp.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/string/escapeUnicode.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/src/string/hyphenate.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/string/insert.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/string/interpolate.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/src/string/lowerCase.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/string/lpad.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/string/ltrim.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mout/src/string/makePath.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/string/normalizeLineBreaks.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/string/pascalCase.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/string/properCase.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/string/removeNonASCII.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/string/removeNonWord.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/string/repeat.js +0 -25
- package/http/node_modules/bower/lib/node_modules/mout/src/string/replace.js +0 -32
- package/http/node_modules/bower/lib/node_modules/mout/src/string/replaceAccents.js +0 -36
- package/http/node_modules/bower/lib/node_modules/mout/src/string/rpad.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/src/string/rtrim.js +0 -32
- package/http/node_modules/bower/lib/node_modules/mout/src/string/sentenceCase.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/string/slugify.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/src/string/startsWith.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/src/string/stripHtmlTags.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/string/trim.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/src/string/truncate.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/src/string/typecast.js +0 -29
- package/http/node_modules/bower/lib/node_modules/mout/src/string/unCamelCase.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/string/underscore.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/src/string/unescapeHtml.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/string/unescapeUnicode.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/src/string/unhyphenate.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/src/string/upperCase.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/src/string.js +0 -46
- package/http/node_modules/bower/lib/node_modules/mout/src/time/convert.js +0 -41
- package/http/node_modules/bower/lib/node_modules/mout/src/time/now.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/src/time/parseMs.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/src/time/toTimeString.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/src/time.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/string/WHITE_SPACES.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/string/camelCase.js +0 -20
- package/http/node_modules/bower/lib/node_modules/mout/string/contains.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/string/crop.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/string/endsWith.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/string/escapeHtml.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/string/escapeRegExp.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mout/string/escapeUnicode.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/string/hyphenate.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/string/insert.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/string/interpolate.js +0 -19
- package/http/node_modules/bower/lib/node_modules/mout/string/lowerCase.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/string/lpad.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/string/ltrim.js +0 -34
- package/http/node_modules/bower/lib/node_modules/mout/string/makePath.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/string/normalizeLineBreaks.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/string/pascalCase.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/string/properCase.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/string/removeNonASCII.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/string/removeNonWord.js +0 -14
- package/http/node_modules/bower/lib/node_modules/mout/string/repeat.js +0 -26
- package/http/node_modules/bower/lib/node_modules/mout/string/replace.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mout/string/replaceAccents.js +0 -36
- package/http/node_modules/bower/lib/node_modules/mout/string/rpad.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/string/rtrim.js +0 -33
- package/http/node_modules/bower/lib/node_modules/mout/string/sentenceCase.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/string/slugify.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mout/string/startsWith.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/string/stripHtmlTags.js +0 -11
- package/http/node_modules/bower/lib/node_modules/mout/string/trim.js +0 -15
- package/http/node_modules/bower/lib/node_modules/mout/string/truncate.js +0 -21
- package/http/node_modules/bower/lib/node_modules/mout/string/typecast.js +0 -29
- package/http/node_modules/bower/lib/node_modules/mout/string/unCamelCase.js +0 -23
- package/http/node_modules/bower/lib/node_modules/mout/string/underscore.js +0 -13
- package/http/node_modules/bower/lib/node_modules/mout/string/unescapeHtml.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/string/unescapeUnicode.js +0 -16
- package/http/node_modules/bower/lib/node_modules/mout/string/unhyphenate.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/string/upperCase.js +0 -10
- package/http/node_modules/bower/lib/node_modules/mout/string.js +0 -46
- package/http/node_modules/bower/lib/node_modules/mout/time/convert.js +0 -41
- package/http/node_modules/bower/lib/node_modules/mout/time/now.js +0 -18
- package/http/node_modules/bower/lib/node_modules/mout/time/parseMs.js +0 -17
- package/http/node_modules/bower/lib/node_modules/mout/time/toTimeString.js +0 -24
- package/http/node_modules/bower/lib/node_modules/mout/time.js +0 -12
- package/http/node_modules/bower/lib/node_modules/mute-stream/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/mute-stream/README.md +0 -68
- package/http/node_modules/bower/lib/node_modules/mute-stream/mute.js +0 -140
- package/http/node_modules/bower/lib/node_modules/mute-stream/package.json +0 -26
- package/http/node_modules/bower/lib/node_modules/mute-stream/test/basic.js +0 -207
- package/http/node_modules/bower/lib/node_modules/nested-error-stacks/CHANGELOG.md +0 -4
- package/http/node_modules/bower/lib/node_modules/nested-error-stacks/LICENSE +0 -22
- package/http/node_modules/bower/lib/node_modules/nested-error-stacks/README.md +0 -60
- package/http/node_modules/bower/lib/node_modules/nested-error-stacks/index.js +0 -48
- package/http/node_modules/bower/lib/node_modules/nested-error-stacks/package.json +0 -36
- package/http/node_modules/bower/lib/node_modules/node-status-codes/index.js +0 -62
- package/http/node_modules/bower/lib/node_modules/node-status-codes/license +0 -21
- package/http/node_modules/bower/lib/node_modules/node-status-codes/package.json +0 -42
- package/http/node_modules/bower/lib/node_modules/node-status-codes/readme.md +0 -32
- package/http/node_modules/bower/lib/node_modules/node-uuid/.npmignore +0 -4
- package/http/node_modules/bower/lib/node_modules/node-uuid/LICENSE.md +0 -21
- package/http/node_modules/bower/lib/node_modules/node-uuid/README.md +0 -8
- package/http/node_modules/bower/lib/node_modules/node-uuid/benchmark/README.md +0 -53
- package/http/node_modules/bower/lib/node_modules/node-uuid/benchmark/bench.gnu +0 -174
- package/http/node_modules/bower/lib/node_modules/node-uuid/benchmark/bench.sh +0 -34
- package/http/node_modules/bower/lib/node_modules/node-uuid/benchmark/benchmark-native.c +0 -34
- package/http/node_modules/bower/lib/node_modules/node-uuid/benchmark/benchmark.js +0 -84
- package/http/node_modules/bower/lib/node_modules/node-uuid/bin/uuid +0 -26
- package/http/node_modules/bower/lib/node_modules/node-uuid/bower.json +0 -23
- package/http/node_modules/bower/lib/node_modules/node-uuid/component.json +0 -25
- package/http/node_modules/bower/lib/node_modules/node-uuid/lib/sha1-browser.js +0 -120
- package/http/node_modules/bower/lib/node_modules/node-uuid/package.json +0 -61
- package/http/node_modules/bower/lib/node_modules/node-uuid/test/compare_v1.js +0 -63
- package/http/node_modules/bower/lib/node_modules/node-uuid/test/test.html +0 -17
- package/http/node_modules/bower/lib/node_modules/node-uuid/test/test.js +0 -231
- package/http/node_modules/bower/lib/node_modules/node-uuid/uuid.js +0 -272
- package/http/node_modules/bower/lib/node_modules/node-uuid/v3.js +0 -54
- package/http/node_modules/bower/lib/node_modules/nopt/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/nopt/.travis.yml +0 -9
- package/http/node_modules/bower/lib/node_modules/nopt/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/nopt/README.md +0 -211
- package/http/node_modules/bower/lib/node_modules/nopt/bin/nopt.js +0 -54
- package/http/node_modules/bower/lib/node_modules/nopt/examples/my-program.js +0 -30
- package/http/node_modules/bower/lib/node_modules/nopt/lib/nopt.js +0 -415
- package/http/node_modules/bower/lib/node_modules/nopt/package.json +0 -22
- package/http/node_modules/bower/lib/node_modules/nopt/test/basic.js +0 -273
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/AUTHORS +0 -4
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/LICENSE +0 -30
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/README.md +0 -106
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/extract_description.js +0 -14
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/fixer.js +0 -417
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/make_warning.js +0 -23
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/normalize.js +0 -39
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/safe_format.js +0 -9
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/typos.json +0 -25
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/warning_messages.json +0 -30
- package/http/node_modules/bower/lib/node_modules/normalize-package-data/package.json +0 -31
- package/http/node_modules/bower/lib/node_modules/number-is-nan/index.js +0 -4
- package/http/node_modules/bower/lib/node_modules/number-is-nan/license +0 -21
- package/http/node_modules/bower/lib/node_modules/number-is-nan/package.json +0 -35
- package/http/node_modules/bower/lib/node_modules/number-is-nan/readme.md +0 -28
- package/http/node_modules/bower/lib/node_modules/oauth-sign/LICENSE +0 -55
- package/http/node_modules/bower/lib/node_modules/oauth-sign/README.md +0 -4
- package/http/node_modules/bower/lib/node_modules/oauth-sign/index.js +0 -136
- package/http/node_modules/bower/lib/node_modules/oauth-sign/package.json +0 -23
- package/http/node_modules/bower/lib/node_modules/object-assign/index.js +0 -90
- package/http/node_modules/bower/lib/node_modules/object-assign/license +0 -21
- package/http/node_modules/bower/lib/node_modules/object-assign/package.json +0 -42
- package/http/node_modules/bower/lib/node_modules/object-assign/readme.md +0 -61
- package/http/node_modules/bower/lib/node_modules/once/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/once/README.md +0 -79
- package/http/node_modules/bower/lib/node_modules/once/once.js +0 -42
- package/http/node_modules/bower/lib/node_modules/once/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/onetime/index.js +0 -31
- package/http/node_modules/bower/lib/node_modules/onetime/license +0 -21
- package/http/node_modules/bower/lib/node_modules/onetime/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/onetime/readme.md +0 -52
- package/http/node_modules/bower/lib/node_modules/opn/index.js +0 -95
- package/http/node_modules/bower/lib/node_modules/opn/license +0 -21
- package/http/node_modules/bower/lib/node_modules/opn/package.json +0 -57
- package/http/node_modules/bower/lib/node_modules/opn/readme.md +0 -89
- package/http/node_modules/bower/lib/node_modules/opn/xdg-open +0 -861
- package/http/node_modules/bower/lib/node_modules/optimist/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/optimist/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/optimist/example/bool.js +0 -10
- package/http/node_modules/bower/lib/node_modules/optimist/example/boolean_double.js +0 -7
- package/http/node_modules/bower/lib/node_modules/optimist/example/boolean_single.js +0 -7
- package/http/node_modules/bower/lib/node_modules/optimist/example/default_hash.js +0 -8
- package/http/node_modules/bower/lib/node_modules/optimist/example/default_singles.js +0 -7
- package/http/node_modules/bower/lib/node_modules/optimist/example/divide.js +0 -8
- package/http/node_modules/bower/lib/node_modules/optimist/example/line_count.js +0 -20
- package/http/node_modules/bower/lib/node_modules/optimist/example/line_count_options.js +0 -29
- package/http/node_modules/bower/lib/node_modules/optimist/example/line_count_wrap.js +0 -29
- package/http/node_modules/bower/lib/node_modules/optimist/example/nonopt.js +0 -4
- package/http/node_modules/bower/lib/node_modules/optimist/example/reflect.js +0 -2
- package/http/node_modules/bower/lib/node_modules/optimist/example/short.js +0 -3
- package/http/node_modules/bower/lib/node_modules/optimist/example/string.js +0 -11
- package/http/node_modules/bower/lib/node_modules/optimist/example/usage-options.js +0 -19
- package/http/node_modules/bower/lib/node_modules/optimist/example/xup.js +0 -10
- package/http/node_modules/bower/lib/node_modules/optimist/index.js +0 -343
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/example/parse.js +0 -2
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/index.js +0 -187
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/package.json +0 -40
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/readme.markdown +0 -73
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/bool.js +0 -119
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/dash.js +0 -24
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/default_bool.js +0 -20
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/dotted.js +0 -22
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/long.js +0 -31
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/num.js +0 -36
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/parse.js +0 -197
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/parse_modified.js +0 -9
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/short.js +0 -67
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/whitespace.js +0 -8
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/README.markdown +0 -70
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/example/center.js +0 -10
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/example/meat.js +0 -3
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/index.js +0 -76
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/package.json +0 -37
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/test/break.js +0 -30
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/test/idleness.txt +0 -63
- package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/test/wrap.js +0 -31
- package/http/node_modules/bower/lib/node_modules/optimist/package.json +0 -39
- package/http/node_modules/bower/lib/node_modules/optimist/readme.markdown +0 -513
- package/http/node_modules/bower/lib/node_modules/optimist/test/_/argv.js +0 -2
- package/http/node_modules/bower/lib/node_modules/optimist/test/_/bin.js +0 -3
- package/http/node_modules/bower/lib/node_modules/optimist/test/_.js +0 -71
- package/http/node_modules/bower/lib/node_modules/optimist/test/dash.js +0 -31
- package/http/node_modules/bower/lib/node_modules/optimist/test/parse.js +0 -446
- package/http/node_modules/bower/lib/node_modules/optimist/test/parse_modified.js +0 -14
- package/http/node_modules/bower/lib/node_modules/optimist/test/short.js +0 -16
- package/http/node_modules/bower/lib/node_modules/optimist/test/usage.js +0 -292
- package/http/node_modules/bower/lib/node_modules/optimist/test/whitespace.js +0 -8
- package/http/node_modules/bower/lib/node_modules/os-homedir/index.js +0 -24
- package/http/node_modules/bower/lib/node_modules/os-homedir/license +0 -21
- package/http/node_modules/bower/lib/node_modules/os-homedir/package.json +0 -41
- package/http/node_modules/bower/lib/node_modules/os-homedir/readme.md +0 -31
- package/http/node_modules/bower/lib/node_modules/os-tmpdir/index.js +0 -25
- package/http/node_modules/bower/lib/node_modules/os-tmpdir/license +0 -21
- package/http/node_modules/bower/lib/node_modules/os-tmpdir/package.json +0 -41
- package/http/node_modules/bower/lib/node_modules/os-tmpdir/readme.md +0 -32
- package/http/node_modules/bower/lib/node_modules/osenv/.npmignore +0 -13
- package/http/node_modules/bower/lib/node_modules/osenv/.travis.yml +0 -9
- package/http/node_modules/bower/lib/node_modules/osenv/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/osenv/README.md +0 -63
- package/http/node_modules/bower/lib/node_modules/osenv/osenv.js +0 -72
- package/http/node_modules/bower/lib/node_modules/osenv/package.json +0 -31
- package/http/node_modules/bower/lib/node_modules/osenv/test/unix.js +0 -71
- package/http/node_modules/bower/lib/node_modules/osenv/test/windows.js +0 -74
- package/http/node_modules/bower/lib/node_modules/osenv/x.tap +0 -39
- package/http/node_modules/bower/lib/node_modules/p-throttler/.editorconfig +0 -12
- package/http/node_modules/bower/lib/node_modules/p-throttler/.jshintrc +0 -63
- package/http/node_modules/bower/lib/node_modules/p-throttler/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/p-throttler/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/p-throttler/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/p-throttler/README.md +0 -86
- package/http/node_modules/bower/lib/node_modules/p-throttler/index.js +0 -155
- package/http/node_modules/bower/lib/node_modules/p-throttler/lib/arrayRemove.js +0 -13
- package/http/node_modules/bower/lib/node_modules/p-throttler/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/p-throttler/test/test.js +0 -304
- package/http/node_modules/bower/lib/node_modules/package-json/index.js +0 -54
- package/http/node_modules/bower/lib/node_modules/package-json/license +0 -21
- package/http/node_modules/bower/lib/node_modules/package-json/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/package-json/readme.md +0 -63
- package/http/node_modules/bower/lib/node_modules/parse-json/index.js +0 -35
- package/http/node_modules/bower/lib/node_modules/parse-json/license +0 -21
- package/http/node_modules/bower/lib/node_modules/parse-json/package.json +0 -46
- package/http/node_modules/bower/lib/node_modules/parse-json/readme.md +0 -83
- package/http/node_modules/bower/lib/node_modules/parse-json/vendor/parse.js +0 -752
- package/http/node_modules/bower/lib/node_modules/parse-json/vendor/unicode.js +0 -71
- package/http/node_modules/bower/lib/node_modules/path-exists/index.js +0 -24
- package/http/node_modules/bower/lib/node_modules/path-exists/license +0 -21
- package/http/node_modules/bower/lib/node_modules/path-exists/package.json +0 -40
- package/http/node_modules/bower/lib/node_modules/path-exists/readme.md +0 -45
- package/http/node_modules/bower/lib/node_modules/path-is-absolute/index.js +0 -20
- package/http/node_modules/bower/lib/node_modules/path-is-absolute/license +0 -21
- package/http/node_modules/bower/lib/node_modules/path-is-absolute/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/path-is-absolute/readme.md +0 -59
- package/http/node_modules/bower/lib/node_modules/path-parse/.travis.yml +0 -9
- package/http/node_modules/bower/lib/node_modules/path-parse/README.md +0 -44
- package/http/node_modules/bower/lib/node_modules/path-parse/index.js +0 -93
- package/http/node_modules/bower/lib/node_modules/path-parse/index.min.js +0 -1
- package/http/node_modules/bower/lib/node_modules/path-parse/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/path-parse/test.js +0 -77
- package/http/node_modules/bower/lib/node_modules/path-parse/test.min.js +0 -1
- package/http/node_modules/bower/lib/node_modules/path-type/index.js +0 -29
- package/http/node_modules/bower/lib/node_modules/path-type/license +0 -21
- package/http/node_modules/bower/lib/node_modules/path-type/package.json +0 -52
- package/http/node_modules/bower/lib/node_modules/path-type/readme.md +0 -42
- package/http/node_modules/bower/lib/node_modules/performance-now/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/performance-now/.tm_properties +0 -7
- package/http/node_modules/bower/lib/node_modules/performance-now/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/performance-now/Makefile +0 -25
- package/http/node_modules/bower/lib/node_modules/performance-now/README.md +0 -30
- package/http/node_modules/bower/lib/node_modules/performance-now/lib/performance-now.js +0 -32
- package/http/node_modules/bower/lib/node_modules/performance-now/license.txt +0 -7
- package/http/node_modules/bower/lib/node_modules/performance-now/package.json +0 -27
- package/http/node_modules/bower/lib/node_modules/performance-now/src/performance-now.coffee +0 -15
- package/http/node_modules/bower/lib/node_modules/performance-now/test/mocha.opts +0 -3
- package/http/node_modules/bower/lib/node_modules/performance-now/test/performance-now.coffee +0 -38
- package/http/node_modules/bower/lib/node_modules/pify/index.js +0 -68
- package/http/node_modules/bower/lib/node_modules/pify/license +0 -21
- package/http/node_modules/bower/lib/node_modules/pify/package.json +0 -48
- package/http/node_modules/bower/lib/node_modules/pify/readme.md +0 -119
- package/http/node_modules/bower/lib/node_modules/pinkie/index.js +0 -292
- package/http/node_modules/bower/lib/node_modules/pinkie/license +0 -21
- package/http/node_modules/bower/lib/node_modules/pinkie/package.json +0 -36
- package/http/node_modules/bower/lib/node_modules/pinkie/readme.md +0 -83
- package/http/node_modules/bower/lib/node_modules/pinkie-promise/index.js +0 -3
- package/http/node_modules/bower/lib/node_modules/pinkie-promise/license +0 -21
- package/http/node_modules/bower/lib/node_modules/pinkie-promise/package.json +0 -35
- package/http/node_modules/bower/lib/node_modules/pinkie-promise/readme.md +0 -28
- package/http/node_modules/bower/lib/node_modules/prepend-http/index.js +0 -14
- package/http/node_modules/bower/lib/node_modules/prepend-http/license +0 -21
- package/http/node_modules/bower/lib/node_modules/prepend-http/package.json +0 -35
- package/http/node_modules/bower/lib/node_modules/prepend-http/readme.md +0 -31
- package/http/node_modules/bower/lib/node_modules/process-nextick-args/.travis.yml +0 -12
- package/http/node_modules/bower/lib/node_modules/process-nextick-args/index.js +0 -43
- package/http/node_modules/bower/lib/node_modules/process-nextick-args/license.md +0 -19
- package/http/node_modules/bower/lib/node_modules/process-nextick-args/package.json +0 -22
- package/http/node_modules/bower/lib/node_modules/process-nextick-args/readme.md +0 -18
- package/http/node_modules/bower/lib/node_modules/process-nextick-args/test.js +0 -24
- package/http/node_modules/bower/lib/node_modules/promptly/.jshintrc +0 -63
- package/http/node_modules/bower/lib/node_modules/promptly/.npmignore +0 -54
- package/http/node_modules/bower/lib/node_modules/promptly/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/promptly/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/promptly/README.md +0 -157
- package/http/node_modules/bower/lib/node_modules/promptly/index.js +0 -180
- package/http/node_modules/bower/lib/node_modules/promptly/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/promptly/test/test.js +0 -330
- package/http/node_modules/bower/lib/node_modules/pump/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/pump/.travis.yml +0 -5
- package/http/node_modules/bower/lib/node_modules/pump/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/pump/README.md +0 -56
- package/http/node_modules/bower/lib/node_modules/pump/index.js +0 -80
- package/http/node_modules/bower/lib/node_modules/pump/package.json +0 -24
- package/http/node_modules/bower/lib/node_modules/pump/test-browser.js +0 -58
- package/http/node_modules/bower/lib/node_modules/pump/test.js +0 -46
- package/http/node_modules/bower/lib/node_modules/punycode/LICENSE-MIT.txt +0 -20
- package/http/node_modules/bower/lib/node_modules/punycode/README.md +0 -176
- package/http/node_modules/bower/lib/node_modules/punycode/package.json +0 -60
- package/http/node_modules/bower/lib/node_modules/punycode/punycode.js +0 -533
- package/http/node_modules/bower/lib/node_modules/q/CHANGES.md +0 -792
- package/http/node_modules/bower/lib/node_modules/q/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/q/README.md +0 -874
- package/http/node_modules/bower/lib/node_modules/q/package.json +0 -76
- package/http/node_modules/bower/lib/node_modules/q/q.js +0 -2073
- package/http/node_modules/bower/lib/node_modules/q/queue.js +0 -35
- package/http/node_modules/bower/lib/node_modules/rc/.npmignore +0 -3
- package/http/node_modules/bower/lib/node_modules/rc/LICENSE.APACHE2 +0 -15
- package/http/node_modules/bower/lib/node_modules/rc/LICENSE.BSD +0 -26
- package/http/node_modules/bower/lib/node_modules/rc/LICENSE.MIT +0 -24
- package/http/node_modules/bower/lib/node_modules/rc/README.md +0 -149
- package/http/node_modules/bower/lib/node_modules/rc/browser.js +0 -7
- package/http/node_modules/bower/lib/node_modules/rc/index.js +0 -60
- package/http/node_modules/bower/lib/node_modules/rc/lib/utils.js +0 -104
- package/http/node_modules/bower/lib/node_modules/rc/package.json +0 -29
- package/http/node_modules/bower/lib/node_modules/rc/test/ini.js +0 -16
- package/http/node_modules/bower/lib/node_modules/rc/test/nested-env-vars.js +0 -50
- package/http/node_modules/bower/lib/node_modules/rc/test/test.js +0 -59
- package/http/node_modules/bower/lib/node_modules/read/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/read/README.md +0 -53
- package/http/node_modules/bower/lib/node_modules/read/lib/read.js +0 -113
- package/http/node_modules/bower/lib/node_modules/read/package.json +0 -27
- package/http/node_modules/bower/lib/node_modules/read-all-stream/index.js +0 -72
- package/http/node_modules/bower/lib/node_modules/read-all-stream/license +0 -21
- package/http/node_modules/bower/lib/node_modules/read-all-stream/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/read-all-stream/readme.md +0 -72
- package/http/node_modules/bower/lib/node_modules/read-pkg/index.js +0 -48
- package/http/node_modules/bower/lib/node_modules/read-pkg/license +0 -21
- package/http/node_modules/bower/lib/node_modules/read-pkg/package.json +0 -42
- package/http/node_modules/bower/lib/node_modules/read-pkg/readme.md +0 -79
- package/http/node_modules/bower/lib/node_modules/read-pkg-up/index.js +0 -31
- package/http/node_modules/bower/lib/node_modules/read-pkg-up/license +0 -21
- package/http/node_modules/bower/lib/node_modules/read-pkg-up/package.json +0 -59
- package/http/node_modules/bower/lib/node_modules/read-pkg-up/readme.md +0 -79
- package/http/node_modules/bower/lib/node_modules/readable-stream/.npmignore +0 -9
- package/http/node_modules/bower/lib/node_modules/readable-stream/.travis.yml +0 -65
- package/http/node_modules/bower/lib/node_modules/readable-stream/CONTRIBUTING.md +0 -38
- package/http/node_modules/bower/lib/node_modules/readable-stream/GOVERNANCE.md +0 -136
- package/http/node_modules/bower/lib/node_modules/readable-stream/LICENSE +0 -47
- package/http/node_modules/bower/lib/node_modules/readable-stream/README.md +0 -57
- package/http/node_modules/bower/lib/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +0 -60
- package/http/node_modules/bower/lib/node_modules/readable-stream/duplex-browser.js +0 -1
- package/http/node_modules/bower/lib/node_modules/readable-stream/duplex.js +0 -1
- package/http/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_duplex.js +0 -124
- package/http/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_passthrough.js +0 -47
- package/http/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_readable.js +0 -1007
- package/http/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_transform.js +0 -214
- package/http/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_writable.js +0 -664
- package/http/node_modules/bower/lib/node_modules/readable-stream/lib/internal/streams/BufferList.js +0 -74
- package/http/node_modules/bower/lib/node_modules/readable-stream/lib/internal/streams/destroy.js +0 -72
- package/http/node_modules/bower/lib/node_modules/readable-stream/lib/internal/streams/stream-browser.js +0 -1
- package/http/node_modules/bower/lib/node_modules/readable-stream/lib/internal/streams/stream.js +0 -1
- package/http/node_modules/bower/lib/node_modules/readable-stream/node_modules/string_decoder/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/readable-stream/node_modules/string_decoder/LICENSE +0 -48
- package/http/node_modules/bower/lib/node_modules/readable-stream/node_modules/string_decoder/README.md +0 -28
- package/http/node_modules/bower/lib/node_modules/readable-stream/node_modules/string_decoder/lib/string_decoder.js +0 -272
- package/http/node_modules/bower/lib/node_modules/readable-stream/node_modules/string_decoder/package.json +0 -28
- package/http/node_modules/bower/lib/node_modules/readable-stream/package.json +0 -54
- package/http/node_modules/bower/lib/node_modules/readable-stream/passthrough.js +0 -1
- package/http/node_modules/bower/lib/node_modules/readable-stream/readable-browser.js +0 -7
- package/http/node_modules/bower/lib/node_modules/readable-stream/readable.js +0 -19
- package/http/node_modules/bower/lib/node_modules/readable-stream/transform.js +0 -1
- package/http/node_modules/bower/lib/node_modules/readable-stream/writable-browser.js +0 -1
- package/http/node_modules/bower/lib/node_modules/readable-stream/writable.js +0 -8
- package/http/node_modules/bower/lib/node_modules/readline2/README.md +0 -33
- package/http/node_modules/bower/lib/node_modules/readline2/index.js +0 -126
- package/http/node_modules/bower/lib/node_modules/readline2/package.json +0 -31
- package/http/node_modules/bower/lib/node_modules/redent/index.js +0 -7
- package/http/node_modules/bower/lib/node_modules/redent/license +0 -21
- package/http/node_modules/bower/lib/node_modules/redent/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/redent/readme.md +0 -48
- package/http/node_modules/bower/lib/node_modules/redeyed/.npmignore +0 -15
- package/http/node_modules/bower/lib/node_modules/redeyed/.travis.yml +0 -5
- package/http/node_modules/bower/lib/node_modules/redeyed/Changelog.md +0 -15
- package/http/node_modules/bower/lib/node_modules/redeyed/LICENSE +0 -23
- package/http/node_modules/bower/lib/node_modules/redeyed/README.md +0 -192
- package/http/node_modules/bower/lib/node_modules/redeyed/config.js +0 -137
- package/http/node_modules/bower/lib/node_modules/redeyed/examples/browser/index.css +0 -31
- package/http/node_modules/bower/lib/node_modules/redeyed/examples/browser/index.html +0 -35
- package/http/node_modules/bower/lib/node_modules/redeyed/examples/browser/index.js +0 -33
- package/http/node_modules/bower/lib/node_modules/redeyed/examples/browser/sample-config.js +0 -131
- package/http/node_modules/bower/lib/node_modules/redeyed/examples/replace-log.js +0 -61
- package/http/node_modules/bower/lib/node_modules/redeyed/examples/sources/log.js +0 -8
- package/http/node_modules/bower/lib/node_modules/redeyed/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/redeyed/redeyed.js +0 -291
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-before-after-config.js +0 -54
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-browser.js +0 -69
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-comments.js +0 -71
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-config-with-undefineds.js +0 -60
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config-extra-params.js +0 -57
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config-skipping-tokens.js +0 -89
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config.js +0 -142
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-mixed.js +0 -46
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-result.js +0 -48
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-script-level-return.js +0 -22
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-shebang.js +0 -23
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-smoke.js +0 -57
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-string-config.js +0 -124
- package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-types.js +0 -71
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/.npmignore +0 -6
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/CHANGELOG.md +0 -94
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/README.md +0 -65
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/base64.js +0 -14
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/index.js +0 -116
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/package.json +0 -46
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/registry-url.js +0 -5
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/test/auth-token.test.js +0 -369
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/test/registry-url.test.js +0 -64
- package/http/node_modules/bower/lib/node_modules/registry-auth-token/yarn.lock +0 -1466
- package/http/node_modules/bower/lib/node_modules/registry-url/index.js +0 -6
- package/http/node_modules/bower/lib/node_modules/registry-url/license +0 -21
- package/http/node_modules/bower/lib/node_modules/registry-url/package.json +0 -40
- package/http/node_modules/bower/lib/node_modules/registry-url/readme.md +0 -50
- package/http/node_modules/bower/lib/node_modules/repeat-string/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/repeat-string/README.md +0 -136
- package/http/node_modules/bower/lib/node_modules/repeat-string/index.js +0 -70
- package/http/node_modules/bower/lib/node_modules/repeat-string/package.json +0 -77
- package/http/node_modules/bower/lib/node_modules/repeating/index.js +0 -24
- package/http/node_modules/bower/lib/node_modules/repeating/license +0 -21
- package/http/node_modules/bower/lib/node_modules/repeating/package.json +0 -37
- package/http/node_modules/bower/lib/node_modules/repeating/readme.md +0 -30
- package/http/node_modules/bower/lib/node_modules/request/.eslintrc +0 -45
- package/http/node_modules/bower/lib/node_modules/request/.npmignore +0 -6
- package/http/node_modules/bower/lib/node_modules/request/.travis.yml +0 -15
- package/http/node_modules/bower/lib/node_modules/request/CHANGELOG.md +0 -578
- package/http/node_modules/bower/lib/node_modules/request/CONTRIBUTING.md +0 -44
- package/http/node_modules/bower/lib/node_modules/request/LICENSE +0 -55
- package/http/node_modules/bower/lib/node_modules/request/README.md +0 -1094
- package/http/node_modules/bower/lib/node_modules/request/index.js +0 -156
- package/http/node_modules/bower/lib/node_modules/request/lib/auth.js +0 -168
- package/http/node_modules/bower/lib/node_modules/request/lib/cookies.js +0 -39
- package/http/node_modules/bower/lib/node_modules/request/lib/getProxyFromURI.js +0 -79
- package/http/node_modules/bower/lib/node_modules/request/lib/har.js +0 -214
- package/http/node_modules/bower/lib/node_modules/request/lib/helpers.js +0 -74
- package/http/node_modules/bower/lib/node_modules/request/lib/multipart.js +0 -109
- package/http/node_modules/bower/lib/node_modules/request/lib/oauth.js +0 -147
- package/http/node_modules/bower/lib/node_modules/request/lib/querystring.js +0 -51
- package/http/node_modules/bower/lib/node_modules/request/lib/redirect.js +0 -153
- package/http/node_modules/bower/lib/node_modules/request/lib/tunnel.js +0 -178
- package/http/node_modules/bower/lib/node_modules/request/package.json +0 -74
- package/http/node_modules/bower/lib/node_modules/request/request.js +0 -1395
- package/http/node_modules/bower/lib/node_modules/request-progress/.editorconfig +0 -12
- package/http/node_modules/bower/lib/node_modules/request-progress/.jshintrc +0 -63
- package/http/node_modules/bower/lib/node_modules/request-progress/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/request-progress/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/request-progress/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/request-progress/README.md +0 -47
- package/http/node_modules/bower/lib/node_modules/request-progress/index.js +0 -80
- package/http/node_modules/bower/lib/node_modules/request-progress/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/request-progress/test/test.js +0 -1
- package/http/node_modules/bower/lib/node_modules/request-replay/.editorconfig +0 -7
- package/http/node_modules/bower/lib/node_modules/request-replay/.jshintrc +0 -63
- package/http/node_modules/bower/lib/node_modules/request-replay/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/request-replay/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/request-replay/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/request-replay/README.md +0 -50
- package/http/node_modules/bower/lib/node_modules/request-replay/index.js +0 -95
- package/http/node_modules/bower/lib/node_modules/request-replay/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/request-replay/test/test.js +0 -68
- package/http/node_modules/bower/lib/node_modules/requireg/.npmignore +0 -5
- package/http/node_modules/bower/lib/node_modules/requireg/.travis.yml +0 -12
- package/http/node_modules/bower/lib/node_modules/requireg/LICENSE +0 -23
- package/http/node_modules/bower/lib/node_modules/requireg/Makefile +0 -4
- package/http/node_modules/bower/lib/node_modules/requireg/README.md +0 -85
- package/http/node_modules/bower/lib/node_modules/requireg/lib/requireg.js +0 -35
- package/http/node_modules/bower/lib/node_modules/requireg/lib/resolvers.js +0 -129
- package/http/node_modules/bower/lib/node_modules/requireg/package-lock.json +0 -192
- package/http/node_modules/bower/lib/node_modules/requireg/package.json +0 -52
- package/http/node_modules/bower/lib/node_modules/requireg/test/fixtures/lib/node_modules/beaker/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/requireg/test/fixtures/lib/node_modules/beaker/package.json +0 -4
- package/http/node_modules/bower/lib/node_modules/requireg/test/requiregSpec.js +0 -145
- package/http/node_modules/bower/lib/node_modules/resolve/.editorconfig +0 -20
- package/http/node_modules/bower/lib/node_modules/resolve/.eslintignore +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/.eslintrc +0 -30
- package/http/node_modules/bower/lib/node_modules/resolve/.npmignore +0 -7
- package/http/node_modules/bower/lib/node_modules/resolve/.travis.yml +0 -185
- package/http/node_modules/bower/lib/node_modules/resolve/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/resolve/appveyor.yml +0 -44
- package/http/node_modules/bower/lib/node_modules/resolve/example/async.js +0 -5
- package/http/node_modules/bower/lib/node_modules/resolve/example/sync.js +0 -3
- package/http/node_modules/bower/lib/node_modules/resolve/index.js +0 -8
- package/http/node_modules/bower/lib/node_modules/resolve/lib/async.js +0 -203
- package/http/node_modules/bower/lib/node_modules/resolve/lib/caller.js +0 -8
- package/http/node_modules/bower/lib/node_modules/resolve/lib/core.js +0 -22
- package/http/node_modules/bower/lib/node_modules/resolve/lib/core.json +0 -47
- package/http/node_modules/bower/lib/node_modules/resolve/lib/node-modules-paths.js +0 -45
- package/http/node_modules/bower/lib/node_modules/resolve/lib/sync.js +0 -93
- package/http/node_modules/bower/lib/node_modules/resolve/package.json +0 -40
- package/http/node_modules/bower/lib/node_modules/resolve/readme.markdown +0 -160
- package/http/node_modules/bower/lib/node_modules/resolve/test/core.js +0 -29
- package/http/node_modules/bower/lib/node_modules/resolve/test/dotdot/abc/index.js +0 -2
- package/http/node_modules/bower/lib/node_modules/resolve/test/dotdot/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/dotdot.js +0 -29
- package/http/node_modules/bower/lib/node_modules/resolve/test/faulty_basedir.js +0 -13
- package/http/node_modules/bower/lib/node_modules/resolve/test/filter.js +0 -19
- package/http/node_modules/bower/lib/node_modules/resolve/test/filter_sync.js +0 -16
- package/http/node_modules/bower/lib/node_modules/resolve/test/mock.js +0 -143
- package/http/node_modules/bower/lib/node_modules/resolve/test/mock_sync.js +0 -67
- package/http/node_modules/bower/lib/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +0 -3
- package/http/node_modules/bower/lib/node_modules/resolve/test/module_dir.js +0 -56
- package/http/node_modules/bower/lib/node_modules/resolve/test/node-modules-paths.js +0 -93
- package/http/node_modules/bower/lib/node_modules/resolve/test/node_path/x/aaa/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/node_path/x/ccc/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/node_path/y/bbb/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/node_path/y/ccc/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/node_path.js +0 -49
- package/http/node_modules/bower/lib/node_modules/resolve/test/nonstring.js +0 -9
- package/http/node_modules/bower/lib/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
- package/http/node_modules/bower/lib/node_modules/resolve/test/pathfilter.js +0 -42
- package/http/node_modules/bower/lib/node_modules/resolve/test/precedence/aaa/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/precedence/aaa/main.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/precedence/aaa.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/precedence/bbb/main.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/precedence/bbb.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/precedence.js +0 -23
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/baz/package.json +0 -3
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/baz/quux.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/cup.coffee +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/dot_main/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/dot_main/package.json +0 -3
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/dot_slash_main/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/dot_slash_main/package.json +0 -3
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/foo.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/incorrect_main/index.js +0 -2
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/incorrect_main/package.json +0 -3
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/mug.coffee +0 -0
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/mug.js +0 -0
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/quux/foo/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/same_names/foo/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/same_names/foo.js +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/symlinked/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/symlinked/_/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/without_basedir/main.js +0 -5
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver.js +0 -349
- package/http/node_modules/bower/lib/node_modules/resolve/test/resolver_sync.js +0 -267
- package/http/node_modules/bower/lib/node_modules/resolve/test/subdirs.js +0 -13
- package/http/node_modules/bower/lib/node_modules/resolve/test/symlinks.js +0 -54
- package/http/node_modules/bower/lib/node_modules/restore-cursor/index.js +0 -9
- package/http/node_modules/bower/lib/node_modules/restore-cursor/license +0 -21
- package/http/node_modules/bower/lib/node_modules/restore-cursor/package.json +0 -44
- package/http/node_modules/bower/lib/node_modules/restore-cursor/readme.md +0 -25
- package/http/node_modules/bower/lib/node_modules/retry/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/retry/License +0 -21
- package/http/node_modules/bower/lib/node_modules/retry/Makefile +0 -7
- package/http/node_modules/bower/lib/node_modules/retry/README.md +0 -167
- package/http/node_modules/bower/lib/node_modules/retry/equation.gif +0 -0
- package/http/node_modules/bower/lib/node_modules/retry/example/dns.js +0 -31
- package/http/node_modules/bower/lib/node_modules/retry/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/retry/lib/retry.js +0 -50
- package/http/node_modules/bower/lib/node_modules/retry/lib/retry_operation.js +0 -109
- package/http/node_modules/bower/lib/node_modules/retry/package.json +0 -23
- package/http/node_modules/bower/lib/node_modules/retry/test/common.js +0 -10
- package/http/node_modules/bower/lib/node_modules/retry/test/integration/test-retry-operation.js +0 -80
- package/http/node_modules/bower/lib/node_modules/retry/test/integration/test-timeouts.js +0 -69
- package/http/node_modules/bower/lib/node_modules/retry/test/runner.js +0 -5
- package/http/node_modules/bower/lib/node_modules/right-align/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/right-align/README.md +0 -77
- package/http/node_modules/bower/lib/node_modules/right-align/index.js +0 -16
- package/http/node_modules/bower/lib/node_modules/right-align/package.json +0 -45
- package/http/node_modules/bower/lib/node_modules/rimraf/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/rimraf/README.md +0 -101
- package/http/node_modules/bower/lib/node_modules/rimraf/bin.js +0 -50
- package/http/node_modules/bower/lib/node_modules/rimraf/package.json +0 -26
- package/http/node_modules/bower/lib/node_modules/rimraf/rimraf.js +0 -364
- package/http/node_modules/bower/lib/node_modules/run-async/.editorconfig +0 -12
- package/http/node_modules/bower/lib/node_modules/run-async/.gitattributes +0 -1
- package/http/node_modules/bower/lib/node_modules/run-async/.jshintrc +0 -20
- package/http/node_modules/bower/lib/node_modules/run-async/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/run-async/.travis.yml +0 -3
- package/http/node_modules/bower/lib/node_modules/run-async/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/run-async/README.md +0 -50
- package/http/node_modules/bower/lib/node_modules/run-async/index.js +0 -25
- package/http/node_modules/bower/lib/node_modules/run-async/package.json +0 -30
- package/http/node_modules/bower/lib/node_modules/run-async/test.js +0 -51
- package/http/node_modules/bower/lib/node_modules/rx-lite/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/rx-lite/readme.md +0 -174
- package/http/node_modules/bower/lib/node_modules/rx-lite/rx.lite.js +0 -6366
- package/http/node_modules/bower/lib/node_modules/rx-lite/rx.lite.map +0 -1
- package/http/node_modules/bower/lib/node_modules/rx-lite/rx.lite.min.js +0 -5
- package/http/node_modules/bower/lib/node_modules/safe-buffer/.travis.yml +0 -7
- package/http/node_modules/bower/lib/node_modules/safe-buffer/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/safe-buffer/README.md +0 -584
- package/http/node_modules/bower/lib/node_modules/safe-buffer/index.js +0 -62
- package/http/node_modules/bower/lib/node_modules/safe-buffer/package.json +0 -37
- package/http/node_modules/bower/lib/node_modules/safe-buffer/test.js +0 -101
- package/http/node_modules/bower/lib/node_modules/semver/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/semver/LICENSE +0 -27
- package/http/node_modules/bower/lib/node_modules/semver/Makefile +0 -24
- package/http/node_modules/bower/lib/node_modules/semver/README.md +0 -158
- package/http/node_modules/bower/lib/node_modules/semver/bin/semver +0 -125
- package/http/node_modules/bower/lib/node_modules/semver/foot.js +0 -6
- package/http/node_modules/bower/lib/node_modules/semver/head.js +0 -2
- package/http/node_modules/bower/lib/node_modules/semver/package.json +0 -21
- package/http/node_modules/bower/lib/node_modules/semver/semver.browser.js +0 -1046
- package/http/node_modules/bower/lib/node_modules/semver/semver.browser.js.gz +0 -0
- package/http/node_modules/bower/lib/node_modules/semver/semver.js +0 -1050
- package/http/node_modules/bower/lib/node_modules/semver/semver.min.js +0 -1
- package/http/node_modules/bower/lib/node_modules/semver/semver.min.js.gz +0 -0
- package/http/node_modules/bower/lib/node_modules/semver/test/amd.js +0 -15
- package/http/node_modules/bower/lib/node_modules/semver/test/gtr.js +0 -173
- package/http/node_modules/bower/lib/node_modules/semver/test/index.js +0 -588
- package/http/node_modules/bower/lib/node_modules/semver/test/ltr.js +0 -175
- package/http/node_modules/bower/lib/node_modules/semver/test/no-module.js +0 -19
- package/http/node_modules/bower/lib/node_modules/semver-diff/index.js +0 -27
- package/http/node_modules/bower/lib/node_modules/semver-diff/license +0 -21
- package/http/node_modules/bower/lib/node_modules/semver-diff/package.json +0 -34
- package/http/node_modules/bower/lib/node_modules/semver-diff/readme.md +0 -52
- package/http/node_modules/bower/lib/node_modules/semver-utils/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/semver-utils/README.md +0 -131
- package/http/node_modules/bower/lib/node_modules/semver-utils/package.json +0 -26
- package/http/node_modules/bower/lib/node_modules/semver-utils/semver-utils.js +0 -151
- package/http/node_modules/bower/lib/node_modules/semver-utils/test/deepOwnEqual.js +0 -26
- package/http/node_modules/bower/lib/node_modules/semver-utils/test/spec.js +0 -192
- package/http/node_modules/bower/lib/node_modules/shell-quote/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/shell-quote/LICENSE +0 -24
- package/http/node_modules/bower/lib/node_modules/shell-quote/example/env.js +0 -3
- package/http/node_modules/bower/lib/node_modules/shell-quote/example/op.js +0 -3
- package/http/node_modules/bower/lib/node_modules/shell-quote/example/parse.js +0 -3
- package/http/node_modules/bower/lib/node_modules/shell-quote/example/quote.js +0 -3
- package/http/node_modules/bower/lib/node_modules/shell-quote/index.js +0 -199
- package/http/node_modules/bower/lib/node_modules/shell-quote/package.json +0 -51
- package/http/node_modules/bower/lib/node_modules/shell-quote/readme.markdown +0 -142
- package/http/node_modules/bower/lib/node_modules/shell-quote/test/comment.js +0 -14
- package/http/node_modules/bower/lib/node_modules/shell-quote/test/env.js +0 -39
- package/http/node_modules/bower/lib/node_modules/shell-quote/test/env_fn.js +0 -19
- package/http/node_modules/bower/lib/node_modules/shell-quote/test/op.js +0 -67
- package/http/node_modules/bower/lib/node_modules/shell-quote/test/parse.js +0 -23
- package/http/node_modules/bower/lib/node_modules/shell-quote/test/quote.js +0 -33
- package/http/node_modules/bower/lib/node_modules/shell-quote/test/set.js +0 -29
- package/http/node_modules/bower/lib/node_modules/signal-exit/CHANGELOG.md +0 -27
- package/http/node_modules/bower/lib/node_modules/signal-exit/LICENSE.txt +0 -16
- package/http/node_modules/bower/lib/node_modules/signal-exit/README.md +0 -40
- package/http/node_modules/bower/lib/node_modules/signal-exit/index.js +0 -157
- package/http/node_modules/bower/lib/node_modules/signal-exit/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/signal-exit/signals.js +0 -53
- package/http/node_modules/bower/lib/node_modules/slide/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/slide/README.md +0 -143
- package/http/node_modules/bower/lib/node_modules/slide/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/slide/lib/async-map-ordered.js +0 -65
- package/http/node_modules/bower/lib/node_modules/slide/lib/async-map.js +0 -54
- package/http/node_modules/bower/lib/node_modules/slide/lib/bind-actor.js +0 -16
- package/http/node_modules/bower/lib/node_modules/slide/lib/chain.js +0 -20
- package/http/node_modules/bower/lib/node_modules/slide/lib/slide.js +0 -3
- package/http/node_modules/bower/lib/node_modules/slide/package.json +0 -20
- package/http/node_modules/bower/lib/node_modules/sntp/.npmignore +0 -18
- package/http/node_modules/bower/lib/node_modules/sntp/.travis.yml +0 -5
- package/http/node_modules/bower/lib/node_modules/sntp/LICENSE +0 -28
- package/http/node_modules/bower/lib/node_modules/sntp/Makefile +0 -9
- package/http/node_modules/bower/lib/node_modules/sntp/README.md +0 -68
- package/http/node_modules/bower/lib/node_modules/sntp/examples/offset.js +0 -16
- package/http/node_modules/bower/lib/node_modules/sntp/examples/time.js +0 -25
- package/http/node_modules/bower/lib/node_modules/sntp/index.js +0 -1
- package/http/node_modules/bower/lib/node_modules/sntp/lib/index.js +0 -412
- package/http/node_modules/bower/lib/node_modules/sntp/package.json +0 -32
- package/http/node_modules/bower/lib/node_modules/sntp/test/index.js +0 -435
- package/http/node_modules/bower/lib/node_modules/sort-keys/index.js +0 -44
- package/http/node_modules/bower/lib/node_modules/sort-keys/license +0 -21
- package/http/node_modules/bower/lib/node_modules/sort-keys/package.json +0 -40
- package/http/node_modules/bower/lib/node_modules/sort-keys/readme.md +0 -60
- package/http/node_modules/bower/lib/node_modules/sort-keys-length/LICENSE.md +0 -19
- package/http/node_modules/bower/lib/node_modules/sort-keys-length/README.md +0 -35
- package/http/node_modules/bower/lib/node_modules/sort-keys-length/index.js +0 -22
- package/http/node_modules/bower/lib/node_modules/sort-keys-length/package.json +0 -32
- package/http/node_modules/bower/lib/node_modules/spdx-correct/LICENSE +0 -57
- package/http/node_modules/bower/lib/node_modules/spdx-correct/README.md +0 -10
- package/http/node_modules/bower/lib/node_modules/spdx-correct/index.js +0 -237
- package/http/node_modules/bower/lib/node_modules/spdx-correct/package.json +0 -27
- package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/AUTHORS +0 -3
- package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/LICENSE +0 -22
- package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/README.md +0 -83
- package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/index.js +0 -5
- package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/package.json +0 -37
- package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/parser.js +0 -1357
- package/http/node_modules/bower/lib/node_modules/spdx-license-ids/LICENSE +0 -24
- package/http/node_modules/bower/lib/node_modules/spdx-license-ids/README.md +0 -55
- package/http/node_modules/bower/lib/node_modules/spdx-license-ids/package.json +0 -45
- package/http/node_modules/bower/lib/node_modules/spdx-license-ids/spdx-license-ids.json +0 -334
- package/http/node_modules/bower/lib/node_modules/sshpk/.npmignore +0 -9
- package/http/node_modules/bower/lib/node_modules/sshpk/.travis.yml +0 -11
- package/http/node_modules/bower/lib/node_modules/sshpk/LICENSE +0 -18
- package/http/node_modules/bower/lib/node_modules/sshpk/README.md +0 -698
- package/http/node_modules/bower/lib/node_modules/sshpk/bin/sshpk-conv +0 -201
- package/http/node_modules/bower/lib/node_modules/sshpk/bin/sshpk-sign +0 -191
- package/http/node_modules/bower/lib/node_modules/sshpk/bin/sshpk-verify +0 -166
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/algs.js +0 -168
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/certificate.js +0 -377
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/dhe.js +0 -411
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/ed-compat.js +0 -96
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/errors.js +0 -84
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/fingerprint.js +0 -161
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/auto.js +0 -73
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/openssh-cert.js +0 -322
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/pem.js +0 -186
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/pkcs1.js +0 -320
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/pkcs8.js +0 -505
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/rfc4253.js +0 -146
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/ssh-private.js +0 -261
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/ssh.js +0 -114
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/x509-pem.js +0 -77
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/x509.js +0 -726
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/identity.js +0 -277
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/index.js +0 -39
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/key.js +0 -274
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/private-key.js +0 -254
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/signature.js +0 -313
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/ssh-buffer.js +0 -148
- package/http/node_modules/bower/lib/node_modules/sshpk/lib/utils.js +0 -288
- package/http/node_modules/bower/lib/node_modules/sshpk/man/man1/sshpk-conv.1 +0 -135
- package/http/node_modules/bower/lib/node_modules/sshpk/man/man1/sshpk-sign.1 +0 -81
- package/http/node_modules/bower/lib/node_modules/sshpk/man/man1/sshpk-verify.1 +0 -68
- package/http/node_modules/bower/lib/node_modules/sshpk/package.json +0 -59
- package/http/node_modules/bower/lib/node_modules/string-width/index.js +0 -37
- package/http/node_modules/bower/lib/node_modules/string-width/license +0 -21
- package/http/node_modules/bower/lib/node_modules/string-width/package.json +0 -56
- package/http/node_modules/bower/lib/node_modules/string-width/readme.md +0 -42
- package/http/node_modules/bower/lib/node_modules/string_decoder/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/string_decoder/LICENSE +0 -20
- package/http/node_modules/bower/lib/node_modules/string_decoder/README.md +0 -7
- package/http/node_modules/bower/lib/node_modules/string_decoder/index.js +0 -221
- package/http/node_modules/bower/lib/node_modules/string_decoder/package.json +0 -25
- package/http/node_modules/bower/lib/node_modules/stringify-object/index.js +0 -81
- package/http/node_modules/bower/lib/node_modules/stringify-object/license +0 -21
- package/http/node_modules/bower/lib/node_modules/stringify-object/package.json +0 -32
- package/http/node_modules/bower/lib/node_modules/stringify-object/readme.md +0 -73
- package/http/node_modules/bower/lib/node_modules/stringstream/.npmignore +0 -15
- package/http/node_modules/bower/lib/node_modules/stringstream/.travis.yml +0 -4
- package/http/node_modules/bower/lib/node_modules/stringstream/LICENSE.txt +0 -22
- package/http/node_modules/bower/lib/node_modules/stringstream/README.md +0 -38
- package/http/node_modules/bower/lib/node_modules/stringstream/example.js +0 -27
- package/http/node_modules/bower/lib/node_modules/stringstream/package.json +0 -18
- package/http/node_modules/bower/lib/node_modules/stringstream/stringstream.js +0 -102
- package/http/node_modules/bower/lib/node_modules/strip-ansi/index.js +0 -6
- package/http/node_modules/bower/lib/node_modules/strip-ansi/license +0 -21
- package/http/node_modules/bower/lib/node_modules/strip-ansi/package.json +0 -57
- package/http/node_modules/bower/lib/node_modules/strip-ansi/readme.md +0 -33
- package/http/node_modules/bower/lib/node_modules/strip-bom/index.js +0 -17
- package/http/node_modules/bower/lib/node_modules/strip-bom/license +0 -21
- package/http/node_modules/bower/lib/node_modules/strip-bom/package.json +0 -42
- package/http/node_modules/bower/lib/node_modules/strip-bom/readme.md +0 -39
- package/http/node_modules/bower/lib/node_modules/strip-indent/cli.js +0 -49
- package/http/node_modules/bower/lib/node_modules/strip-indent/index.js +0 -16
- package/http/node_modules/bower/lib/node_modules/strip-indent/license +0 -21
- package/http/node_modules/bower/lib/node_modules/strip-indent/package.json +0 -46
- package/http/node_modules/bower/lib/node_modules/strip-indent/readme.md +0 -61
- package/http/node_modules/bower/lib/node_modules/strip-json-comments/index.js +0 -70
- package/http/node_modules/bower/lib/node_modules/strip-json-comments/license +0 -21
- package/http/node_modules/bower/lib/node_modules/strip-json-comments/package.json +0 -42
- package/http/node_modules/bower/lib/node_modules/strip-json-comments/readme.md +0 -64
- package/http/node_modules/bower/lib/node_modules/tar-fs/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/tar-fs/.travis.yml +0 -3
- package/http/node_modules/bower/lib/node_modules/tar-fs/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/tar-fs/README.md +0 -143
- package/http/node_modules/bower/lib/node_modules/tar-fs/index.js +0 -323
- package/http/node_modules/bower/lib/node_modules/tar-fs/package.json +0 -41
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/a/hello.txt +0 -1
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/b/a/test.txt +0 -1
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/c/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/http/node_modules/bower/lib/node_modules/tar-fs/test/index.js +0 -227
- package/http/node_modules/bower/lib/node_modules/tar-stream/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/tar-stream/README.md +0 -168
- package/http/node_modules/bower/lib/node_modules/tar-stream/extract.js +0 -246
- package/http/node_modules/bower/lib/node_modules/tar-stream/headers.js +0 -286
- package/http/node_modules/bower/lib/node_modules/tar-stream/index.js +0 -2
- package/http/node_modules/bower/lib/node_modules/tar-stream/pack.js +0 -254
- package/http/node_modules/bower/lib/node_modules/tar-stream/package.json +0 -56
- package/http/node_modules/bower/lib/node_modules/throttleit/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/throttleit/History.md +0 -11
- package/http/node_modules/bower/lib/node_modules/throttleit/Makefile +0 -11
- package/http/node_modules/bower/lib/node_modules/throttleit/Readme.md +0 -16
- package/http/node_modules/bower/lib/node_modules/throttleit/component.json +0 -13
- package/http/node_modules/bower/lib/node_modules/throttleit/example.js +0 -14
- package/http/node_modules/bower/lib/node_modules/throttleit/index.js +0 -30
- package/http/node_modules/bower/lib/node_modules/throttleit/package.json +0 -18
- package/http/node_modules/bower/lib/node_modules/through/.travis.yml +0 -5
- package/http/node_modules/bower/lib/node_modules/through/LICENSE.APACHE2 +0 -15
- package/http/node_modules/bower/lib/node_modules/through/LICENSE.MIT +0 -24
- package/http/node_modules/bower/lib/node_modules/through/index.js +0 -108
- package/http/node_modules/bower/lib/node_modules/through/package.json +0 -36
- package/http/node_modules/bower/lib/node_modules/through/readme.markdown +0 -64
- package/http/node_modules/bower/lib/node_modules/through/test/async.js +0 -28
- package/http/node_modules/bower/lib/node_modules/through/test/auto-destroy.js +0 -30
- package/http/node_modules/bower/lib/node_modules/through/test/buffering.js +0 -71
- package/http/node_modules/bower/lib/node_modules/through/test/end.js +0 -45
- package/http/node_modules/bower/lib/node_modules/through/test/index.js +0 -133
- package/http/node_modules/bower/lib/node_modules/timed-out/index.js +0 -55
- package/http/node_modules/bower/lib/node_modules/timed-out/license +0 -21
- package/http/node_modules/bower/lib/node_modules/timed-out/package.json +0 -36
- package/http/node_modules/bower/lib/node_modules/timed-out/readme.md +0 -42
- package/http/node_modules/bower/lib/node_modules/tmp/.npmignore +0 -2
- package/http/node_modules/bower/lib/node_modules/tmp/.travis.yml +0 -8
- package/http/node_modules/bower/lib/node_modules/tmp/Gruntfile.js +0 -18
- package/http/node_modules/bower/lib/node_modules/tmp/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/tmp/README.md +0 -266
- package/http/node_modules/bower/lib/node_modules/tmp/cleanup.sh +0 -3
- package/http/node_modules/bower/lib/node_modules/tmp/lib/tmp.js +0 -462
- package/http/node_modules/bower/lib/node_modules/tmp/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/tmp/test/base.js +0 -149
- package/http/node_modules/bower/lib/node_modules/tmp/test/dir-sync-test.js +0 -230
- package/http/node_modules/bower/lib/node_modules/tmp/test/dir-test.js +0 -225
- package/http/node_modules/bower/lib/node_modules/tmp/test/file-sync-test.js +0 -190
- package/http/node_modules/bower/lib/node_modules/tmp/test/file-test.js +0 -191
- package/http/node_modules/bower/lib/node_modules/tmp/test/graceful-sync.js +0 -20
- package/http/node_modules/bower/lib/node_modules/tmp/test/graceful.js +0 -15
- package/http/node_modules/bower/lib/node_modules/tmp/test/issue62-sync.js +0 -27
- package/http/node_modules/bower/lib/node_modules/tmp/test/issue62.js +0 -27
- package/http/node_modules/bower/lib/node_modules/tmp/test/keep-sync.js +0 -12
- package/http/node_modules/bower/lib/node_modules/tmp/test/keep.js +0 -11
- package/http/node_modules/bower/lib/node_modules/tmp/test/name-test.js +0 -82
- package/http/node_modules/bower/lib/node_modules/tmp/test/spawn-sync.js +0 -32
- package/http/node_modules/bower/lib/node_modules/tmp/test/spawn.js +0 -32
- package/http/node_modules/bower/lib/node_modules/tmp/test/symlinkme/file.js +0 -0
- package/http/node_modules/bower/lib/node_modules/tmp/test/unsafe-sync.js +0 -30
- package/http/node_modules/bower/lib/node_modules/tmp/test/unsafe.js +0 -30
- package/http/node_modules/bower/lib/node_modules/touch/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/touch/README.md +0 -39
- package/http/node_modules/bower/lib/node_modules/touch/bin/touch.js +0 -31
- package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/.npmignore +0 -0
- package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/LICENSE +0 -23
- package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/README.md +0 -208
- package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/bin/nopt.js +0 -44
- package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/examples/my-program.js +0 -30
- package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/lib/nopt.js +0 -552
- package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/package.json +0 -12
- package/http/node_modules/bower/lib/node_modules/touch/package.json +0 -15
- package/http/node_modules/bower/lib/node_modules/touch/test/sanity.js +0 -31
- package/http/node_modules/bower/lib/node_modules/touch/touch.js +0 -154
- package/http/node_modules/bower/lib/node_modules/traverse/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/traverse/LICENSE +0 -24
- package/http/node_modules/bower/lib/node_modules/traverse/README.markdown +0 -247
- package/http/node_modules/bower/lib/node_modules/traverse/examples/json.js +0 -16
- package/http/node_modules/bower/lib/node_modules/traverse/examples/leaves.js +0 -15
- package/http/node_modules/bower/lib/node_modules/traverse/examples/negative.js +0 -8
- package/http/node_modules/bower/lib/node_modules/traverse/examples/stringify.js +0 -38
- package/http/node_modules/bower/lib/node_modules/traverse/index.js +0 -322
- package/http/node_modules/bower/lib/node_modules/traverse/package.json +0 -18
- package/http/node_modules/bower/lib/node_modules/traverse/test/circular.js +0 -114
- package/http/node_modules/bower/lib/node_modules/traverse/test/date.js +0 -35
- package/http/node_modules/bower/lib/node_modules/traverse/test/equal.js +0 -219
- package/http/node_modules/bower/lib/node_modules/traverse/test/instance.js +0 -17
- package/http/node_modules/bower/lib/node_modules/traverse/test/interface.js +0 -42
- package/http/node_modules/bower/lib/node_modules/traverse/test/json.js +0 -47
- package/http/node_modules/bower/lib/node_modules/traverse/test/leaves.js +0 -21
- package/http/node_modules/bower/lib/node_modules/traverse/test/mutability.js +0 -203
- package/http/node_modules/bower/lib/node_modules/traverse/test/negative.js +0 -20
- package/http/node_modules/bower/lib/node_modules/traverse/test/obj.js +0 -15
- package/http/node_modules/bower/lib/node_modules/traverse/test/stop.js +0 -41
- package/http/node_modules/bower/lib/node_modules/traverse/test/stringify.js +0 -36
- package/http/node_modules/bower/lib/node_modules/traverse/test/super_deep.js +0 -54
- package/http/node_modules/bower/lib/node_modules/trim-newlines/index.js +0 -13
- package/http/node_modules/bower/lib/node_modules/trim-newlines/license +0 -21
- package/http/node_modules/bower/lib/node_modules/trim-newlines/package.json +0 -42
- package/http/node_modules/bower/lib/node_modules/trim-newlines/readme.md +0 -46
- package/http/node_modules/bower/lib/node_modules/tunnel-agent/LICENSE +0 -55
- package/http/node_modules/bower/lib/node_modules/tunnel-agent/README.md +0 -4
- package/http/node_modules/bower/lib/node_modules/tunnel-agent/index.js +0 -243
- package/http/node_modules/bower/lib/node_modules/tunnel-agent/package.json +0 -20
- package/http/node_modules/bower/lib/node_modules/tweetnacl/.npmignore +0 -4
- package/http/node_modules/bower/lib/node_modules/tweetnacl/AUTHORS.md +0 -28
- package/http/node_modules/bower/lib/node_modules/tweetnacl/CHANGELOG.md +0 -221
- package/http/node_modules/bower/lib/node_modules/tweetnacl/LICENSE +0 -24
- package/http/node_modules/bower/lib/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md +0 -20
- package/http/node_modules/bower/lib/node_modules/tweetnacl/README.md +0 -459
- package/http/node_modules/bower/lib/node_modules/tweetnacl/nacl-fast.js +0 -2388
- package/http/node_modules/bower/lib/node_modules/tweetnacl/nacl-fast.min.js +0 -2
- package/http/node_modules/bower/lib/node_modules/tweetnacl/nacl.d.ts +0 -98
- package/http/node_modules/bower/lib/node_modules/tweetnacl/nacl.js +0 -1175
- package/http/node_modules/bower/lib/node_modules/tweetnacl/nacl.min.js +0 -1
- package/http/node_modules/bower/lib/node_modules/tweetnacl/package.json +0 -58
- package/http/node_modules/bower/lib/node_modules/uglify-js/LICENSE +0 -29
- package/http/node_modules/bower/lib/node_modules/uglify-js/README.md +0 -995
- package/http/node_modules/bower/lib/node_modules/uglify-js/bin/extract-props.js +0 -77
- package/http/node_modules/bower/lib/node_modules/uglify-js/bin/uglifyjs +0 -635
- package/http/node_modules/bower/lib/node_modules/uglify-js/lib/ast.js +0 -1052
- package/http/node_modules/bower/lib/node_modules/uglify-js/lib/compress.js +0 -4101
- package/http/node_modules/bower/lib/node_modules/uglify-js/lib/mozilla-ast.js +0 -611
- package/http/node_modules/bower/lib/node_modules/uglify-js/lib/output.js +0 -1423
- package/http/node_modules/bower/lib/node_modules/uglify-js/lib/parse.js +0 -1599
- package/http/node_modules/bower/lib/node_modules/uglify-js/lib/propmangle.js +0 -264
- package/http/node_modules/bower/lib/node_modules/uglify-js/lib/scope.js +0 -656
- package/http/node_modules/bower/lib/node_modules/uglify-js/lib/sourcemap.js +0 -97
- package/http/node_modules/bower/lib/node_modules/uglify-js/lib/transform.js +0 -218
- package/http/node_modules/bower/lib/node_modules/uglify-js/lib/utils.js +0 -362
- package/http/node_modules/bower/lib/node_modules/uglify-js/package.json +0 -51
- package/http/node_modules/bower/lib/node_modules/uglify-js/tools/domprops.json +0 -5603
- package/http/node_modules/bower/lib/node_modules/uglify-js/tools/exports.js +0 -19
- package/http/node_modules/bower/lib/node_modules/uglify-js/tools/node.js +0 -320
- package/http/node_modules/bower/lib/node_modules/uglify-js/tools/props.html +0 -61
- package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/.npmignore +0 -14
- package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/.travis.yml +0 -3
- package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/README.md +0 -15
- package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/index.js +0 -49
- package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/package.json +0 -20
- package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/test/index.js +0 -22
- package/http/node_modules/bower/lib/node_modules/untildify/index.js +0 -11
- package/http/node_modules/bower/lib/node_modules/untildify/license +0 -21
- package/http/node_modules/bower/lib/node_modules/untildify/package.json +0 -43
- package/http/node_modules/bower/lib/node_modules/untildify/readme.md +0 -30
- package/http/node_modules/bower/lib/node_modules/unzip-response/index.js +0 -36
- package/http/node_modules/bower/lib/node_modules/unzip-response/license +0 -21
- package/http/node_modules/bower/lib/node_modules/unzip-response/package.json +0 -50
- package/http/node_modules/bower/lib/node_modules/unzip-response/readme.md +0 -29
- package/http/node_modules/bower/lib/node_modules/update-notifier/check.js +0 -20
- package/http/node_modules/bower/lib/node_modules/update-notifier/index.js +0 -113
- package/http/node_modules/bower/lib/node_modules/update-notifier/package.json +0 -47
- package/http/node_modules/bower/lib/node_modules/update-notifier/readme.md +0 -149
- package/http/node_modules/bower/lib/node_modules/url-parse-lax/index.js +0 -14
- package/http/node_modules/bower/lib/node_modules/url-parse-lax/license +0 -21
- package/http/node_modules/bower/lib/node_modules/url-parse-lax/package.json +0 -41
- package/http/node_modules/bower/lib/node_modules/url-parse-lax/readme.md +0 -100
- package/http/node_modules/bower/lib/node_modules/user-home/cli.js +0 -26
- package/http/node_modules/bower/lib/node_modules/user-home/index.js +0 -15
- package/http/node_modules/bower/lib/node_modules/user-home/license +0 -21
- package/http/node_modules/bower/lib/node_modules/user-home/package.json +0 -39
- package/http/node_modules/bower/lib/node_modules/user-home/readme.md +0 -42
- package/http/node_modules/bower/lib/node_modules/util-deprecate/History.md +0 -16
- package/http/node_modules/bower/lib/node_modules/util-deprecate/LICENSE +0 -24
- package/http/node_modules/bower/lib/node_modules/util-deprecate/README.md +0 -53
- package/http/node_modules/bower/lib/node_modules/util-deprecate/browser.js +0 -67
- package/http/node_modules/bower/lib/node_modules/util-deprecate/node.js +0 -6
- package/http/node_modules/bower/lib/node_modules/util-deprecate/package.json +0 -27
- package/http/node_modules/bower/lib/node_modules/uuid/.eslintrc.json +0 -46
- package/http/node_modules/bower/lib/node_modules/uuid/AUTHORS +0 -5
- package/http/node_modules/bower/lib/node_modules/uuid/HISTORY.md +0 -28
- package/http/node_modules/bower/lib/node_modules/uuid/LICENSE.md +0 -21
- package/http/node_modules/bower/lib/node_modules/uuid/README.md +0 -227
- package/http/node_modules/bower/lib/node_modules/uuid/bin/uuid +0 -50
- package/http/node_modules/bower/lib/node_modules/uuid/index.js +0 -8
- package/http/node_modules/bower/lib/node_modules/uuid/lib/bytesToUuid.js +0 -23
- package/http/node_modules/bower/lib/node_modules/uuid/lib/rng-browser.js +0 -33
- package/http/node_modules/bower/lib/node_modules/uuid/lib/rng.js +0 -10
- package/http/node_modules/bower/lib/node_modules/uuid/lib/sha1-browser.js +0 -85
- package/http/node_modules/bower/lib/node_modules/uuid/lib/sha1.js +0 -21
- package/http/node_modules/bower/lib/node_modules/uuid/package.json +0 -28
- package/http/node_modules/bower/lib/node_modules/uuid/v1.js +0 -100
- package/http/node_modules/bower/lib/node_modules/uuid/v4.js +0 -29
- package/http/node_modules/bower/lib/node_modules/uuid/v5.js +0 -42
- package/http/node_modules/bower/lib/node_modules/validate-npm-package-license/LICENSE +0 -174
- package/http/node_modules/bower/lib/node_modules/validate-npm-package-license/README.md +0 -113
- package/http/node_modules/bower/lib/node_modules/validate-npm-package-license/index.js +0 -84
- package/http/node_modules/bower/lib/node_modules/validate-npm-package-license/package.json +0 -25
- package/http/node_modules/bower/lib/node_modules/verror/.npmignore +0 -9
- package/http/node_modules/bower/lib/node_modules/verror/CHANGES.md +0 -28
- package/http/node_modules/bower/lib/node_modules/verror/CONTRIBUTING.md +0 -19
- package/http/node_modules/bower/lib/node_modules/verror/LICENSE +0 -19
- package/http/node_modules/bower/lib/node_modules/verror/README.md +0 -528
- package/http/node_modules/bower/lib/node_modules/verror/lib/verror.js +0 -451
- package/http/node_modules/bower/lib/node_modules/verror/package.json +0 -22
- package/http/node_modules/bower/lib/node_modules/which/CHANGELOG.md +0 -147
- package/http/node_modules/bower/lib/node_modules/which/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/which/README.md +0 -51
- package/http/node_modules/bower/lib/node_modules/which/bin/which +0 -52
- package/http/node_modules/bower/lib/node_modules/which/package.json +0 -30
- package/http/node_modules/bower/lib/node_modules/which/which.js +0 -135
- package/http/node_modules/bower/lib/node_modules/widest-line/index.js +0 -9
- package/http/node_modules/bower/lib/node_modules/widest-line/license +0 -21
- package/http/node_modules/bower/lib/node_modules/widest-line/package.json +0 -54
- package/http/node_modules/bower/lib/node_modules/widest-line/readme.md +0 -34
- package/http/node_modules/bower/lib/node_modules/window-size/LICENSE-MIT +0 -22
- package/http/node_modules/bower/lib/node_modules/window-size/README.md +0 -26
- package/http/node_modules/bower/lib/node_modules/window-size/index.js +0 -33
- package/http/node_modules/bower/lib/node_modules/window-size/package.json +0 -33
- package/http/node_modules/bower/lib/node_modules/wrappy/LICENSE +0 -15
- package/http/node_modules/bower/lib/node_modules/wrappy/README.md +0 -36
- package/http/node_modules/bower/lib/node_modules/wrappy/package.json +0 -29
- package/http/node_modules/bower/lib/node_modules/wrappy/wrappy.js +0 -33
- package/http/node_modules/bower/lib/node_modules/write-file-atomic/LICENSE +0 -6
- package/http/node_modules/bower/lib/node_modules/write-file-atomic/README.md +0 -44
- package/http/node_modules/bower/lib/node_modules/write-file-atomic/index.js +0 -129
- package/http/node_modules/bower/lib/node_modules/write-file-atomic/package.json +0 -38
- package/http/node_modules/bower/lib/node_modules/xdg-basedir/index.js +0 -27
- package/http/node_modules/bower/lib/node_modules/xdg-basedir/license +0 -21
- package/http/node_modules/bower/lib/node_modules/xdg-basedir/package.json +0 -42
- package/http/node_modules/bower/lib/node_modules/xdg-basedir/readme.md +0 -60
- package/http/node_modules/bower/lib/node_modules/xtend/.jshintrc +0 -30
- package/http/node_modules/bower/lib/node_modules/xtend/.npmignore +0 -1
- package/http/node_modules/bower/lib/node_modules/xtend/LICENCE +0 -19
- package/http/node_modules/bower/lib/node_modules/xtend/Makefile +0 -4
- package/http/node_modules/bower/lib/node_modules/xtend/README.md +0 -32
- package/http/node_modules/bower/lib/node_modules/xtend/immutable.js +0 -19
- package/http/node_modules/bower/lib/node_modules/xtend/mutable.js +0 -17
- package/http/node_modules/bower/lib/node_modules/xtend/package.json +0 -55
- package/http/node_modules/bower/lib/node_modules/xtend/test.js +0 -83
- package/http/node_modules/bower/lib/node_modules/yargs/CHANGELOG.md +0 -374
- package/http/node_modules/bower/lib/node_modules/yargs/LICENSE +0 -21
- package/http/node_modules/bower/lib/node_modules/yargs/README.md +0 -926
- package/http/node_modules/bower/lib/node_modules/yargs/completion.sh.hbs +0 -22
- package/http/node_modules/bower/lib/node_modules/yargs/index.js +0 -504
- package/http/node_modules/bower/lib/node_modules/yargs/lib/completion.js +0 -71
- package/http/node_modules/bower/lib/node_modules/yargs/lib/parser.js +0 -448
- package/http/node_modules/bower/lib/node_modules/yargs/lib/usage.js +0 -314
- package/http/node_modules/bower/lib/node_modules/yargs/lib/validation.js +0 -196
- package/http/node_modules/bower/lib/node_modules/yargs/package.json +0 -85
- package/http/node_modules/bower/lib/renderers/JsonRenderer.js +0 -136
- package/http/node_modules/bower/lib/renderers/StandardRenderer.js +0 -542
- package/http/node_modules/bower/lib/renderers/index.js +0 -4
- package/http/node_modules/bower/lib/templates/helpers/colors.js +0 -13
- package/http/node_modules/bower/lib/templates/helpers/condense.js +0 -22
- package/http/node_modules/bower/lib/templates/helpers/indent.js +0 -12
- package/http/node_modules/bower/lib/templates/helpers/index.js +0 -7
- package/http/node_modules/bower/lib/templates/helpers/rpad.js +0 -12
- package/http/node_modules/bower/lib/templates/helpers/sum.js +0 -7
- package/http/node_modules/bower/lib/templates/json/help-cache/clean.json +0 -16
- package/http/node_modules/bower/lib/templates/json/help-cache/list.json +0 -15
- package/http/node_modules/bower/lib/templates/json/help-cache.json +0 -11
- package/http/node_modules/bower/lib/templates/json/help-home.json +0 -16
- package/http/node_modules/bower/lib/templates/json/help-info.json +0 -16
- package/http/node_modules/bower/lib/templates/json/help-init.json +0 -14
- package/http/node_modules/bower/lib/templates/json/help-install.json +0 -45
- package/http/node_modules/bower/lib/templates/json/help-link.json +0 -15
- package/http/node_modules/bower/lib/templates/json/help-list.json +0 -24
- package/http/node_modules/bower/lib/templates/json/help-login.json +0 -19
- package/http/node_modules/bower/lib/templates/json/help-lookup.json +0 -14
- package/http/node_modules/bower/lib/templates/json/help-prune.json +0 -14
- package/http/node_modules/bower/lib/templates/json/help-register.json +0 -19
- package/http/node_modules/bower/lib/templates/json/help-search.json +0 -14
- package/http/node_modules/bower/lib/templates/json/help-uninstall.json +0 -29
- package/http/node_modules/bower/lib/templates/json/help-unregister.json +0 -19
- package/http/node_modules/bower/lib/templates/json/help-update.json +0 -34
- package/http/node_modules/bower/lib/templates/json/help-version.json +0 -14
- package/http/node_modules/bower/lib/templates/json/help.json +0 -78
- package/http/node_modules/bower/lib/templates/std/conflict-resolved.std +0 -9
- package/http/node_modules/bower/lib/templates/std/conflict.std +0 -11
- package/http/node_modules/bower/lib/templates/std/help-cache.std +0 -17
- package/http/node_modules/bower/lib/templates/std/help-generic.std +0 -23
- package/http/node_modules/bower/lib/templates/std/help.std +0 -26
- package/http/node_modules/bower/lib/templates/std/info.std +0 -14
- package/http/node_modules/bower/lib/templates/std/lookup.std +0 -8
- package/http/node_modules/bower/lib/templates/std/register.std +0 -5
- package/http/node_modules/bower/lib/templates/std/search-results.std +0 -10
- package/http/node_modules/bower/lib/util/abbreviations.js +0 -30
- package/http/node_modules/bower/lib/util/cli.js +0 -49
- package/http/node_modules/bower/lib/util/cmd.js +0 -129
- package/http/node_modules/bower/lib/util/copy.js +0 -119
- package/http/node_modules/bower/lib/util/createError.js +0 -14
- package/http/node_modules/bower/lib/util/createLink.js +0 -64
- package/http/node_modules/bower/lib/util/download.js +0 -153
- package/http/node_modules/bower/lib/util/extract.js +0 -278
- package/http/node_modules/bower/lib/util/fs.js +0 -34
- package/http/node_modules/bower/lib/util/isPathAbsolute.js +0 -5
- package/http/node_modules/bower/lib/util/readJson.js +0 -55
- package/http/node_modules/bower/lib/util/relativeToBaseDir.js +0 -14
- package/http/node_modules/bower/lib/util/removeIgnores.js +0 -65
- package/http/node_modules/bower/lib/util/resolve.js +0 -22
- package/http/node_modules/bower/lib/util/rimraf.js +0 -46
- package/http/node_modules/bower/lib/util/rootCheck.js +0 -35
- package/http/node_modules/bower/lib/util/semver.js +0 -77
- package/http/node_modules/bower/lib/util/template.js +0 -44
- package/http/node_modules/bower/lib/util/userAgent.js +0 -12
- package/http/node_modules/bower/lib/util/validLink.js +0 -22
- package/http/node_modules/bower/lib/version.js +0 -3
- package/http/node_modules/bower/package.json +0 -63
- package/http/node_modules/brace-expansion/LICENSE +0 -21
- package/http/node_modules/brace-expansion/README.md +0 -129
- package/http/node_modules/brace-expansion/index.js +0 -201
- package/http/node_modules/brace-expansion/package.json +0 -75
- package/http/node_modules/braces/LICENSE +0 -21
- package/http/node_modules/braces/README.md +0 -640
- package/http/node_modules/braces/index.js +0 -318
- package/http/node_modules/braces/lib/braces.js +0 -104
- package/http/node_modules/braces/lib/compilers.js +0 -282
- package/http/node_modules/braces/lib/parsers.js +0 -360
- package/http/node_modules/braces/lib/utils.js +0 -343
- package/http/node_modules/braces/package.json +0 -156
- package/http/node_modules/bytes/History.md +0 -87
- package/http/node_modules/bytes/LICENSE +0 -23
- package/http/node_modules/bytes/Readme.md +0 -126
- package/http/node_modules/bytes/index.js +0 -162
- package/http/node_modules/bytes/package.json +0 -84
- package/http/node_modules/cache-base/LICENSE +0 -21
- package/http/node_modules/cache-base/README.md +0 -291
- package/http/node_modules/cache-base/index.js +0 -261
- package/http/node_modules/cache-base/package.json +0 -118
- package/http/node_modules/chalk/index.d.ts +0 -415
- package/http/node_modules/chalk/license +0 -9
- package/http/node_modules/chalk/package.json +0 -100
- package/http/node_modules/chalk/readme.md +0 -293
- package/http/node_modules/chalk/source/index.js +0 -229
- package/http/node_modules/chalk/source/templates.js +0 -134
- package/http/node_modules/chalk/source/util.js +0 -39
- package/http/node_modules/class-utils/LICENSE +0 -21
- package/http/node_modules/class-utils/README.md +0 -300
- package/http/node_modules/class-utils/index.js +0 -370
- package/http/node_modules/class-utils/package.json +0 -131
- package/http/node_modules/collection-visit/LICENSE +0 -21
- package/http/node_modules/collection-visit/README.md +0 -89
- package/http/node_modules/collection-visit/index.js +0 -30
- package/http/node_modules/collection-visit/package.json +0 -115
- package/http/node_modules/color-convert/CHANGELOG.md +0 -54
- package/http/node_modules/color-convert/LICENSE +0 -21
- package/http/node_modules/color-convert/README.md +0 -68
- package/http/node_modules/color-convert/conversions.js +0 -839
- package/http/node_modules/color-convert/index.js +0 -81
- package/http/node_modules/color-convert/package.json +0 -83
- package/http/node_modules/color-convert/route.js +0 -97
- package/http/node_modules/color-name/LICENSE +0 -8
- package/http/node_modules/color-name/README.md +0 -11
- package/http/node_modules/color-name/index.js +0 -152
- package/http/node_modules/color-name/package.json +0 -56
- package/http/node_modules/colors/LICENSE +0 -23
- package/http/node_modules/colors/ReadMe.md +0 -178
- package/http/node_modules/colors/examples/normal-usage.js +0 -74
- package/http/node_modules/colors/examples/safe-string.js +0 -76
- package/http/node_modules/colors/lib/colors.js +0 -187
- package/http/node_modules/colors/lib/custom/trap.js +0 -45
- package/http/node_modules/colors/lib/custom/zalgo.js +0 -104
- package/http/node_modules/colors/lib/extendStringPrototype.js +0 -113
- package/http/node_modules/colors/lib/index.js +0 -12
- package/http/node_modules/colors/lib/maps/america.js +0 -12
- package/http/node_modules/colors/lib/maps/rainbow.js +0 -13
- package/http/node_modules/colors/lib/maps/random.js +0 -8
- package/http/node_modules/colors/lib/maps/zebra.js +0 -5
- package/http/node_modules/colors/lib/styles.js +0 -77
- package/http/node_modules/colors/lib/system/supports-colors.js +0 -61
- package/http/node_modules/colors/package.json +0 -61
- package/http/node_modules/colors/safe.js +0 -9
- package/http/node_modules/colors/themes/generic-logging.js +0 -12
- package/http/node_modules/component-emitter/History.md +0 -75
- package/http/node_modules/component-emitter/LICENSE +0 -24
- package/http/node_modules/component-emitter/Readme.md +0 -74
- package/http/node_modules/component-emitter/index.js +0 -175
- package/http/node_modules/component-emitter/package.json +0 -57
- package/http/node_modules/concat-map/.travis.yml +0 -4
- package/http/node_modules/concat-map/LICENSE +0 -18
- package/http/node_modules/concat-map/README.markdown +0 -62
- package/http/node_modules/concat-map/example/map.js +0 -6
- package/http/node_modules/concat-map/index.js +0 -13
- package/http/node_modules/concat-map/package.json +0 -88
- package/http/node_modules/concat-map/test/map.js +0 -39
- package/http/node_modules/content-disposition/HISTORY.md +0 -55
- package/http/node_modules/content-disposition/LICENSE +0 -22
- package/http/node_modules/content-disposition/README.md +0 -148
- package/http/node_modules/content-disposition/index.js +0 -458
- package/http/node_modules/content-disposition/package.json +0 -79
- package/http/node_modules/content-type/HISTORY.md +0 -24
- package/http/node_modules/content-type/LICENSE +0 -22
- package/http/node_modules/content-type/README.md +0 -92
- package/http/node_modules/content-type/index.js +0 -222
- package/http/node_modules/content-type/package.json +0 -76
- package/http/node_modules/cookie/HISTORY.md +0 -123
- package/http/node_modules/cookie/LICENSE +0 -24
- package/http/node_modules/cookie/README.md +0 -253
- package/http/node_modules/cookie/index.js +0 -198
- package/http/node_modules/cookie/package.json +0 -79
- package/http/node_modules/cookie-signature/History.md +0 -38
- package/http/node_modules/cookie-signature/Readme.md +0 -42
- package/http/node_modules/cookie-signature/index.js +0 -51
- package/http/node_modules/cookie-signature/package.json +0 -58
- package/http/node_modules/copy-descriptor/LICENSE +0 -21
- package/http/node_modules/copy-descriptor/index.js +0 -81
- package/http/node_modules/copy-descriptor/package.json +0 -87
- package/http/node_modules/dateformat/LICENSE +0 -20
- package/http/node_modules/dateformat/Readme.md +0 -162
- package/http/node_modules/dateformat/lib/dateformat.js +0 -229
- package/http/node_modules/dateformat/package.json +0 -71
- package/http/node_modules/debug/.coveralls.yml +0 -1
- package/http/node_modules/debug/.eslintrc +0 -11
- package/http/node_modules/debug/.travis.yml +0 -14
- package/http/node_modules/debug/CHANGELOG.md +0 -362
- package/http/node_modules/debug/LICENSE +0 -19
- package/http/node_modules/debug/Makefile +0 -50
- package/http/node_modules/debug/README.md +0 -312
- package/http/node_modules/debug/component.json +0 -19
- package/http/node_modules/debug/karma.conf.js +0 -70
- package/http/node_modules/debug/node.js +0 -1
- package/http/node_modules/debug/package.json +0 -94
- package/http/node_modules/debug/src/browser.js +0 -185
- package/http/node_modules/debug/src/debug.js +0 -202
- package/http/node_modules/debug/src/index.js +0 -10
- package/http/node_modules/debug/src/inspector-log.js +0 -15
- package/http/node_modules/debug/src/node.js +0 -248
- package/http/node_modules/decode-uri-component/index.js +0 -94
- package/http/node_modules/decode-uri-component/license +0 -21
- package/http/node_modules/decode-uri-component/package.json +0 -69
- package/http/node_modules/decode-uri-component/readme.md +0 -70
- package/http/node_modules/define-property/CHANGELOG.md +0 -82
- package/http/node_modules/define-property/LICENSE +0 -21
- package/http/node_modules/define-property/README.md +0 -117
- package/http/node_modules/define-property/index.js +0 -38
- package/http/node_modules/define-property/package.json +0 -108
- package/http/node_modules/depd/History.md +0 -96
- package/http/node_modules/depd/LICENSE +0 -22
- package/http/node_modules/depd/Readme.md +0 -280
- package/http/node_modules/depd/index.js +0 -522
- package/http/node_modules/depd/lib/browser/index.js +0 -77
- package/http/node_modules/depd/lib/compat/callsite-tostring.js +0 -103
- package/http/node_modules/depd/lib/compat/event-listener-count.js +0 -22
- package/http/node_modules/depd/lib/compat/index.js +0 -79
- package/http/node_modules/depd/package.json +0 -79
- package/http/node_modules/destroy/LICENSE +0 -22
- package/http/node_modules/destroy/README.md +0 -60
- package/http/node_modules/destroy/index.js +0 -75
- package/http/node_modules/destroy/package.json +0 -71
- package/http/node_modules/detect-file/LICENSE +0 -21
- package/http/node_modules/detect-file/README.md +0 -99
- package/http/node_modules/detect-file/index.js +0 -109
- package/http/node_modules/detect-file/package.json +0 -91
- package/http/node_modules/ee-first/LICENSE +0 -22
- package/http/node_modules/ee-first/README.md +0 -80
- package/http/node_modules/ee-first/index.js +0 -95
- package/http/node_modules/ee-first/package.json +0 -63
- package/http/node_modules/encodeurl/HISTORY.md +0 -14
- package/http/node_modules/encodeurl/LICENSE +0 -22
- package/http/node_modules/encodeurl/README.md +0 -128
- package/http/node_modules/encodeurl/index.js +0 -60
- package/http/node_modules/encodeurl/package.json +0 -78
- package/http/node_modules/escape-html/LICENSE +0 -24
- package/http/node_modules/escape-html/Readme.md +0 -43
- package/http/node_modules/escape-html/index.js +0 -78
- package/http/node_modules/escape-html/package.json +0 -59
- package/http/node_modules/escape-string-regexp/index.js +0 -11
- package/http/node_modules/escape-string-regexp/license +0 -21
- package/http/node_modules/escape-string-regexp/package.json +0 -81
- package/http/node_modules/escape-string-regexp/readme.md +0 -27
- package/http/node_modules/esprima/ChangeLog +0 -235
- package/http/node_modules/esprima/LICENSE.BSD +0 -21
- package/http/node_modules/esprima/README.md +0 -46
- package/http/node_modules/esprima/bin/esparse.js +0 -139
- package/http/node_modules/esprima/bin/esvalidate.js +0 -236
- package/http/node_modules/esprima/dist/esprima.js +0 -6709
- package/http/node_modules/esprima/package.json +0 -137
- package/http/node_modules/etag/HISTORY.md +0 -83
- package/http/node_modules/etag/LICENSE +0 -22
- package/http/node_modules/etag/README.md +0 -159
- package/http/node_modules/etag/index.js +0 -131
- package/http/node_modules/etag/package.json +0 -86
- package/http/node_modules/eventemitter2/README.md +0 -248
- package/http/node_modules/eventemitter2/index.js +0 -1
- package/http/node_modules/eventemitter2/lib/eventemitter2.js +0 -573
- package/http/node_modules/eventemitter2/package.json +0 -83
- package/http/node_modules/exit/.jshintrc +0 -14
- package/http/node_modules/exit/.travis.yml +0 -6
- package/http/node_modules/exit/Gruntfile.js +0 -48
- package/http/node_modules/exit/LICENSE-MIT +0 -22
- package/http/node_modules/exit/README.md +0 -75
- package/http/node_modules/exit/lib/exit.js +0 -41
- package/http/node_modules/exit/package.json +0 -73
- package/http/node_modules/exit/test/exit_test.js +0 -121
- package/http/node_modules/exit/test/fixtures/10-stderr.txt +0 -10
- package/http/node_modules/exit/test/fixtures/10-stdout-stderr.txt +0 -20
- package/http/node_modules/exit/test/fixtures/10-stdout.txt +0 -10
- package/http/node_modules/exit/test/fixtures/100-stderr.txt +0 -100
- package/http/node_modules/exit/test/fixtures/100-stdout-stderr.txt +0 -200
- package/http/node_modules/exit/test/fixtures/100-stdout.txt +0 -100
- package/http/node_modules/exit/test/fixtures/1000-stderr.txt +0 -1000
- package/http/node_modules/exit/test/fixtures/1000-stdout-stderr.txt +0 -2000
- package/http/node_modules/exit/test/fixtures/1000-stdout.txt +0 -1000
- package/http/node_modules/exit/test/fixtures/create-files.sh +0 -8
- package/http/node_modules/exit/test/fixtures/log-broken.js +0 -23
- package/http/node_modules/exit/test/fixtures/log.js +0 -25
- package/http/node_modules/expand-brackets/LICENSE +0 -21
- package/http/node_modules/expand-brackets/README.md +0 -302
- package/http/node_modules/expand-brackets/changelog.md +0 -35
- package/http/node_modules/expand-brackets/index.js +0 -211
- package/http/node_modules/expand-brackets/lib/compilers.js +0 -87
- package/http/node_modules/expand-brackets/lib/parsers.js +0 -219
- package/http/node_modules/expand-brackets/lib/utils.js +0 -34
- package/http/node_modules/expand-brackets/package.json +0 -133
- package/http/node_modules/expand-tilde/LICENSE +0 -21
- package/http/node_modules/expand-tilde/README.md +0 -80
- package/http/node_modules/expand-tilde/index.js +0 -22
- package/http/node_modules/expand-tilde/package.json +0 -100
- package/http/node_modules/express/History.md +0 -3477
- package/http/node_modules/express/LICENSE +0 -24
- package/http/node_modules/express/Readme.md +0 -155
- package/http/node_modules/express/index.js +0 -11
- package/http/node_modules/express/lib/application.js +0 -644
- package/http/node_modules/express/lib/express.js +0 -116
- package/http/node_modules/express/lib/middleware/init.js +0 -43
- package/http/node_modules/express/lib/middleware/query.js +0 -47
- package/http/node_modules/express/lib/request.js +0 -525
- package/http/node_modules/express/lib/response.js +0 -1142
- package/http/node_modules/express/lib/router/index.js +0 -662
- package/http/node_modules/express/lib/router/layer.js +0 -181
- package/http/node_modules/express/lib/router/route.js +0 -216
- package/http/node_modules/express/lib/utils.js +0 -306
- package/http/node_modules/express/lib/view.js +0 -182
- package/http/node_modules/express/package.json +0 -153
- package/http/node_modules/express-session/HISTORY.md +0 -429
- package/http/node_modules/express-session/LICENSE +0 -24
- package/http/node_modules/express-session/README.md +0 -862
- package/http/node_modules/express-session/index.js +0 -681
- package/http/node_modules/express-session/package.json +0 -90
- package/http/node_modules/express-session/session/cookie.js +0 -150
- package/http/node_modules/express-session/session/memory.js +0 -187
- package/http/node_modules/express-session/session/session.js +0 -143
- package/http/node_modules/express-session/session/store.js +0 -102
- package/http/node_modules/extend/.eslintrc +0 -17
- package/http/node_modules/extend/.jscs.json +0 -175
- package/http/node_modules/extend/.travis.yml +0 -230
- package/http/node_modules/extend/CHANGELOG.md +0 -83
- package/http/node_modules/extend/LICENSE +0 -23
- package/http/node_modules/extend/README.md +0 -81
- package/http/node_modules/extend/component.json +0 -32
- package/http/node_modules/extend/index.js +0 -117
- package/http/node_modules/extend/package.json +0 -75
- package/http/node_modules/extend-shallow/LICENSE +0 -21
- package/http/node_modules/extend-shallow/README.md +0 -97
- package/http/node_modules/extend-shallow/index.js +0 -60
- package/http/node_modules/extend-shallow/package.json +0 -126
- package/http/node_modules/extglob/LICENSE +0 -21
- package/http/node_modules/extglob/README.md +0 -362
- package/http/node_modules/extglob/changelog.md +0 -25
- package/http/node_modules/extglob/index.js +0 -331
- package/http/node_modules/extglob/lib/.DS_Store +0 -0
- package/http/node_modules/extglob/lib/compilers.js +0 -169
- package/http/node_modules/extglob/lib/extglob.js +0 -78
- package/http/node_modules/extglob/lib/parsers.js +0 -156
- package/http/node_modules/extglob/lib/utils.js +0 -69
- package/http/node_modules/extglob/package.json +0 -160
- package/http/node_modules/fill-range/LICENSE +0 -21
- package/http/node_modules/fill-range/README.md +0 -250
- package/http/node_modules/fill-range/index.js +0 -208
- package/http/node_modules/fill-range/package.json +0 -130
- package/http/node_modules/finalhandler/HISTORY.md +0 -187
- package/http/node_modules/finalhandler/LICENSE +0 -22
- package/http/node_modules/finalhandler/README.md +0 -148
- package/http/node_modules/finalhandler/index.js +0 -331
- package/http/node_modules/finalhandler/package.json +0 -80
- package/http/node_modules/findup-sync/LICENSE-MIT +0 -22
- package/http/node_modules/findup-sync/README.md +0 -48
- package/http/node_modules/findup-sync/lib/findup-sync.js +0 -49
- package/http/node_modules/findup-sync/node_modules/glob/LICENSE +0 -15
- package/http/node_modules/findup-sync/node_modules/glob/README.md +0 -377
- package/http/node_modules/findup-sync/node_modules/glob/common.js +0 -245
- package/http/node_modules/findup-sync/node_modules/glob/glob.js +0 -752
- package/http/node_modules/findup-sync/node_modules/glob/package.json +0 -75
- package/http/node_modules/findup-sync/node_modules/glob/sync.js +0 -460
- package/http/node_modules/findup-sync/package.json +0 -74
- package/http/node_modules/fined/LICENSE +0 -21
- package/http/node_modules/fined/README.md +0 -81
- package/http/node_modules/fined/index.js +0 -174
- package/http/node_modules/fined/package.json +0 -89
- package/http/node_modules/flagged-respawn/LICENSE +0 -21
- package/http/node_modules/flagged-respawn/README.md +0 -111
- package/http/node_modules/flagged-respawn/index.js +0 -52
- package/http/node_modules/flagged-respawn/lib/is-v8flags.js +0 -13
- package/http/node_modules/flagged-respawn/lib/remover.js +0 -13
- package/http/node_modules/flagged-respawn/lib/reorder.js +0 -18
- package/http/node_modules/flagged-respawn/lib/respawn.js +0 -16
- package/http/node_modules/flagged-respawn/package.json +0 -95
- package/http/node_modules/for-in/LICENSE +0 -21
- package/http/node_modules/for-in/README.md +0 -85
- package/http/node_modules/for-in/index.js +0 -16
- package/http/node_modules/for-in/package.json +0 -107
- package/http/node_modules/for-own/LICENSE +0 -21
- package/http/node_modules/for-own/README.md +0 -85
- package/http/node_modules/for-own/index.js +0 -19
- package/http/node_modules/for-own/package.json +0 -110
- package/http/node_modules/forwarded/HISTORY.md +0 -16
- package/http/node_modules/forwarded/LICENSE +0 -22
- package/http/node_modules/forwarded/README.md +0 -57
- package/http/node_modules/forwarded/index.js +0 -76
- package/http/node_modules/forwarded/package.json +0 -78
- package/http/node_modules/fragment-cache/LICENSE +0 -21
- package/http/node_modules/fragment-cache/README.md +0 -156
- package/http/node_modules/fragment-cache/index.js +0 -128
- package/http/node_modules/fragment-cache/package.json +0 -93
- package/http/node_modules/fresh/HISTORY.md +0 -70
- package/http/node_modules/fresh/LICENSE +0 -23
- package/http/node_modules/fresh/README.md +0 -119
- package/http/node_modules/fresh/index.js +0 -137
- package/http/node_modules/fresh/package.json +0 -90
- package/http/node_modules/fs.realpath/LICENSE +0 -43
- package/http/node_modules/fs.realpath/README.md +0 -33
- package/http/node_modules/fs.realpath/index.js +0 -66
- package/http/node_modules/fs.realpath/old.js +0 -303
- package/http/node_modules/fs.realpath/package.json +0 -59
- package/http/node_modules/function-bind/.eslintrc +0 -15
- package/http/node_modules/function-bind/.jscs.json +0 -176
- package/http/node_modules/function-bind/.travis.yml +0 -168
- package/http/node_modules/function-bind/LICENSE +0 -20
- package/http/node_modules/function-bind/README.md +0 -48
- package/http/node_modules/function-bind/implementation.js +0 -52
- package/http/node_modules/function-bind/index.js +0 -5
- package/http/node_modules/function-bind/package.json +0 -94
- package/http/node_modules/function-bind/test/.eslintrc +0 -9
- package/http/node_modules/function-bind/test/index.js +0 -252
- package/http/node_modules/get-value/LICENSE +0 -21
- package/http/node_modules/get-value/index.js +0 -50
- package/http/node_modules/get-value/package.json +0 -113
- package/http/node_modules/getobject/.jshintrc +0 -15
- package/http/node_modules/getobject/.travis.yml +0 -6
- package/http/node_modules/getobject/Gruntfile.js +0 -48
- package/http/node_modules/getobject/LICENSE-MIT +0 -22
- package/http/node_modules/getobject/README.md +0 -20
- package/http/node_modules/getobject/lib/getobject.js +0 -60
- package/http/node_modules/getobject/package.json +0 -69
- package/http/node_modules/getobject/test/namespace_test.js +0 -51
- package/http/node_modules/glob/LICENSE +0 -21
- package/http/node_modules/glob/README.md +0 -375
- package/http/node_modules/glob/changelog.md +0 -67
- package/http/node_modules/glob/common.js +0 -240
- package/http/node_modules/glob/glob.js +0 -790
- package/http/node_modules/glob/package.json +0 -81
- package/http/node_modules/glob/sync.js +0 -486
- package/http/node_modules/global-modules/LICENSE +0 -21
- package/http/node_modules/global-modules/README.md +0 -75
- package/http/node_modules/global-modules/index.js +0 -31
- package/http/node_modules/global-modules/package.json +0 -112
- package/http/node_modules/global-prefix/LICENSE +0 -21
- package/http/node_modules/global-prefix/README.md +0 -78
- package/http/node_modules/global-prefix/index.js +0 -96
- package/http/node_modules/global-prefix/package.json +0 -130
- package/http/node_modules/grunt/CHANGELOG +0 -171
- package/http/node_modules/grunt/LICENSE +0 -35
- package/http/node_modules/grunt/README.md +0 -25
- package/http/node_modules/grunt/bin/grunt +0 -3
- package/http/node_modules/grunt/lib/grunt/cli.js +0 -55
- package/http/node_modules/grunt/lib/grunt/config.js +0 -115
- package/http/node_modules/grunt/lib/grunt/event.js +0 -7
- package/http/node_modules/grunt/lib/grunt/fail.js +0 -75
- package/http/node_modules/grunt/lib/grunt/file.js +0 -460
- package/http/node_modules/grunt/lib/grunt/help.js +0 -120
- package/http/node_modules/grunt/lib/grunt/option.js +0 -38
- package/http/node_modules/grunt/lib/grunt/task.js +0 -471
- package/http/node_modules/grunt/lib/grunt/template.js +0 -90
- package/http/node_modules/grunt/lib/grunt.js +0 -174
- package/http/node_modules/grunt/lib/util/task.js +0 -335
- package/http/node_modules/grunt/package.json +0 -103
- package/http/node_modules/grunt-bower/CHANGELOG.md +0 -106
- package/http/node_modules/grunt-bower/CONTRIBUTORS.md +0 -17
- package/http/node_modules/grunt-bower/LICENSE-MIT +0 -22
- package/http/node_modules/grunt-bower/README.md +0 -231
- package/http/node_modules/grunt-bower/TODO.md +0 -1
- package/http/node_modules/grunt-bower/package.json +0 -68
- package/http/node_modules/grunt-bower/tasks/bower.js +0 -185
- package/http/node_modules/grunt-bower/tasks/lib/helpers.js +0 -173
- package/http/node_modules/grunt-bower/test/boilerplate/Gruntfile.js +0 -118
- package/http/node_modules/grunt-bower/test/boilerplate/README +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower.json +0 -10
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/.bower.json +0 -37
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/css/font-awesome.css +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/css/font-awesome.min.css +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/fonts/FontAwesome.otf +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/fonts/fontawesome-webfont.eot +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/fonts/fontawesome-webfont.svg +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/fonts/fontawesome-webfont.ttf +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/fonts/fontawesome-webfont.woff +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/.bower.json +0 -38
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/MIT-LICENSE.txt +0 -21
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/bower.json +0 -27
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/dist/jquery.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/dist/jquery.min.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/dist/jquery.min.map +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/event.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/intro.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/jquery.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/manipulation.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/offset.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/outro.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/queue/delay.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/queue.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/selector-native.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/selector-sizzle.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/selector.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/serialize.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/sizzle/dist/sizzle.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/sizzle/dist/sizzle.min.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/.bower.json +0 -21
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/AUTHORS.txt +0 -260
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/MIT-LICENSE.txt +0 -26
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/README.md +0 -11
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/bower.json +0 -12
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/component.json +0 -13
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/composer.json +0 -64
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/jquery-ui.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/jquery-ui.min.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/package.json +0 -66
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/.jshintrc +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/accordion.min.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/autocomplete.min.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/button.min.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/i18n/datepicker-af.min.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/i18n/datepicker-ar-DZ.min.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/i18n/datepicker-ca.min.js +0 -0
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/tabs.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/tooltip.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/widget.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-bold.eot +0 -0
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-bold.ttf +0 -0
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-bold.woff +0 -0
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-light.eot +0 -0
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-light.ttf +0 -0
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-light.woff +0 -0
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/novecento-bold.eot +0 -0
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/novecento-bold.ttf +0 -0
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/novecento-bold.woff +0 -0
- package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/stylesheets/normalize.css +0 -375
- package/http/node_modules/grunt-bower/test/boilerplate/package.json +0 -15
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/FontAwesome.otf +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/css/font-awesome.css +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/dist/jquery.validate.js +0 -1574
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/font-awesome.css +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fontawesome-webfont.eot +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fontawesome-webfont.svg +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fontawesome-webfont.ttf +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fontawesome-webfont.woff +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fonts/FontAwesome.otf +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fonts/fontawesome-webfont.eot +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fonts/fontawesome-webfont.svg +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fonts/fontawesome-webfont.ttf +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fonts/fontawesome-webfont.woff +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/jquery-ui.js +0 -1
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/jquery.js +0 -8829
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/jquery.validate.js +0 -1574
- package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/underscore.js +0 -1276
- package/http/node_modules/grunt-bower/test/boilerplate/run_test.js +0 -53
- package/http/node_modules/grunt-bower/test/bower_test.js +0 -39
- package/http/node_modules/grunt-bower-install-simple/Gruntfile.js +0 -54
- package/http/node_modules/grunt-bower-install-simple/LICENSE.md +0 -21
- package/http/node_modules/grunt-bower-install-simple/Makefile +0 -45
- package/http/node_modules/grunt-bower-install-simple/README.md +0 -116
- package/http/node_modules/grunt-bower-install-simple/eslint.json +0 -179
- package/http/node_modules/grunt-bower-install-simple/jshint.json +0 -26
- package/http/node_modules/grunt-bower-install-simple/node_modules/ansi-styles/index.js +0 -165
- package/http/node_modules/grunt-bower-install-simple/node_modules/ansi-styles/license +0 -9
- package/http/node_modules/grunt-bower-install-simple/node_modules/ansi-styles/package.json +0 -88
- package/http/node_modules/grunt-bower-install-simple/node_modules/ansi-styles/readme.md +0 -147
- package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/index.js +0 -228
- package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/index.js.flow +0 -93
- package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/license +0 -9
- package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/package.json +0 -103
- package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/readme.md +0 -314
- package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/templates.js +0 -128
- package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/types/index.d.ts +0 -97
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/CHANGELOG.md +0 -54
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/LICENSE +0 -21
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/README.md +0 -68
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/conversions.js +0 -868
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/index.js +0 -78
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/package.json +0 -81
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/route.js +0 -97
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/.eslintrc.json +0 -43
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/LICENSE +0 -8
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/README.md +0 -11
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/index.js +0 -152
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/package.json +0 -53
- package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/test.js +0 -7
- package/http/node_modules/grunt-bower-install-simple/node_modules/has-flag/index.js +0 -8
- package/http/node_modules/grunt-bower-install-simple/node_modules/has-flag/license +0 -9
- package/http/node_modules/grunt-bower-install-simple/node_modules/has-flag/package.json +0 -76
- package/http/node_modules/grunt-bower-install-simple/node_modules/has-flag/readme.md +0 -70
- package/http/node_modules/grunt-bower-install-simple/node_modules/supports-color/browser.js +0 -5
- package/http/node_modules/grunt-bower-install-simple/node_modules/supports-color/index.js +0 -131
- package/http/node_modules/grunt-bower-install-simple/node_modules/supports-color/license +0 -9
- package/http/node_modules/grunt-bower-install-simple/node_modules/supports-color/package.json +0 -85
- package/http/node_modules/grunt-bower-install-simple/node_modules/supports-color/readme.md +0 -66
- package/http/node_modules/grunt-bower-install-simple/package.json +0 -71
- package/http/node_modules/grunt-bower-install-simple/sample/Gruntfile.js +0 -32
- package/http/node_modules/grunt-bower-install-simple/sample/Makefile +0 -18
- package/http/node_modules/grunt-bower-install-simple/sample/README.md +0 -4
- package/http/node_modules/grunt-bower-install-simple/sample/bower.json +0 -11
- package/http/node_modules/grunt-bower-install-simple/sample/package.json +0 -29
- package/http/node_modules/grunt-bower-install-simple/tasks/grunt-bower-install-simple.js +0 -129
- package/http/node_modules/grunt-cli/CHANGELOG.md +0 -37
- package/http/node_modules/grunt-cli/README.md +0 -31
- package/http/node_modules/grunt-cli/bin/grunt +0 -69
- package/http/node_modules/grunt-cli/completion/bash +0 -49
- package/http/node_modules/grunt-cli/completion/zsh +0 -37
- package/http/node_modules/grunt-cli/lib/completion.js +0 -34
- package/http/node_modules/grunt-cli/lib/info.js +0 -51
- package/http/node_modules/grunt-cli/package.json +0 -73
- package/http/node_modules/grunt-contrib-clean/CHANGELOG +0 -63
- package/http/node_modules/grunt-contrib-clean/README.md +0 -165
- package/http/node_modules/grunt-contrib-clean/package.json +0 -82
- package/http/node_modules/grunt-contrib-clean/tasks/clean.js +0 -67
- package/http/node_modules/grunt-known-options/LICENSE +0 -35
- package/http/node_modules/grunt-known-options/README.md +0 -16
- package/http/node_modules/grunt-known-options/index.js +0 -73
- package/http/node_modules/grunt-known-options/package.json +0 -53
- package/http/node_modules/grunt-legacy-log/.idea/grunt-legacy-log.iml +0 -12
- package/http/node_modules/grunt-legacy-log/.idea/misc.xml +0 -6
- package/http/node_modules/grunt-legacy-log/.idea/modules.xml +0 -8
- package/http/node_modules/grunt-legacy-log/.idea/vcs.xml +0 -6
- package/http/node_modules/grunt-legacy-log/.idea/workspace.xml +0 -53
- package/http/node_modules/grunt-legacy-log/.jshintrc +0 -14
- package/http/node_modules/grunt-legacy-log/CHANGELOG +0 -19
- package/http/node_modules/grunt-legacy-log/Gruntfile.js +0 -30
- package/http/node_modules/grunt-legacy-log/LICENSE-MIT +0 -22
- package/http/node_modules/grunt-legacy-log/README.md +0 -5
- package/http/node_modules/grunt-legacy-log/examples.js +0 -26
- package/http/node_modules/grunt-legacy-log/index.js +0 -299
- package/http/node_modules/grunt-legacy-log/package.json +0 -67
- package/http/node_modules/grunt-legacy-log/test/index.js +0 -519
- package/http/node_modules/grunt-legacy-log-utils/README.md +0 -6
- package/http/node_modules/grunt-legacy-log-utils/index.js +0 -115
- package/http/node_modules/grunt-legacy-log-utils/package.json +0 -68
- package/http/node_modules/grunt-legacy-util/.idea/grunt-legacy-util.iml +0 -12
- package/http/node_modules/grunt-legacy-util/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/http/node_modules/grunt-legacy-util/.idea/jsLinters/jshint.xml +0 -16
- package/http/node_modules/grunt-legacy-util/.idea/modules.xml +0 -8
- package/http/node_modules/grunt-legacy-util/.idea/vcs.xml +0 -6
- package/http/node_modules/grunt-legacy-util/.idea/workspace.xml +0 -72
- package/http/node_modules/grunt-legacy-util/.jshintrc +0 -14
- package/http/node_modules/grunt-legacy-util/.travis.yml +0 -9
- package/http/node_modules/grunt-legacy-util/CHANGELOG +0 -21
- package/http/node_modules/grunt-legacy-util/Gruntfile.js +0 -30
- package/http/node_modules/grunt-legacy-util/LICENSE-MIT +0 -22
- package/http/node_modules/grunt-legacy-util/README.md +0 -32
- package/http/node_modules/grunt-legacy-util/appveyor.yml +0 -27
- package/http/node_modules/grunt-legacy-util/index.js +0 -202
- package/http/node_modules/grunt-legacy-util/package.json +0 -71
- package/http/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-execArgv-child.js +0 -7
- package/http/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-execArgv.js +0 -17
- package/http/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-print-text.js +0 -8
- package/http/node_modules/grunt-legacy-util/test/fixtures/exec.cmd +0 -1
- package/http/node_modules/grunt-legacy-util/test/fixtures/exec.sh +0 -2
- package/http/node_modules/grunt-legacy-util/test/fixtures/spawn-multibyte.js +0 -17
- package/http/node_modules/grunt-legacy-util/test/fixtures/spawn.js +0 -8
- package/http/node_modules/grunt-legacy-util/test/index.js +0 -554
- package/http/node_modules/has/LICENSE-MIT +0 -22
- package/http/node_modules/has/README.md +0 -18
- package/http/node_modules/has/package.json +0 -73
- package/http/node_modules/has/src/index.js +0 -5
- package/http/node_modules/has/test/index.js +0 -10
- package/http/node_modules/has-flag/index.d.ts +0 -39
- package/http/node_modules/has-flag/index.js +0 -8
- package/http/node_modules/has-flag/license +0 -9
- package/http/node_modules/has-flag/package.json +0 -78
- package/http/node_modules/has-flag/readme.md +0 -89
- package/http/node_modules/has-value/LICENSE +0 -21
- package/http/node_modules/has-value/README.md +0 -149
- package/http/node_modules/has-value/index.js +0 -16
- package/http/node_modules/has-value/package.json +0 -120
- package/http/node_modules/has-values/LICENSE +0 -21
- package/http/node_modules/has-values/README.md +0 -129
- package/http/node_modules/has-values/index.js +0 -60
- package/http/node_modules/has-values/package.json +0 -115
- package/http/node_modules/homedir-polyfill/LICENSE +0 -21
- package/http/node_modules/homedir-polyfill/README.md +0 -96
- package/http/node_modules/homedir-polyfill/index.js +0 -9
- package/http/node_modules/homedir-polyfill/package.json +0 -95
- package/http/node_modules/homedir-polyfill/polyfill.js +0 -81
- package/http/node_modules/hooker/LICENSE-MIT +0 -22
- package/http/node_modules/hooker/README.md +0 -186
- package/http/node_modules/hooker/child.js +0 -101
- package/http/node_modules/hooker/dist/ba-hooker.js +0 -169
- package/http/node_modules/hooker/dist/ba-hooker.min.js +0 -4
- package/http/node_modules/hooker/grunt.js +0 -47
- package/http/node_modules/hooker/lib/hooker.js +0 -174
- package/http/node_modules/hooker/package.json +0 -67
- package/http/node_modules/hooker/parent.js +0 -17
- package/http/node_modules/hooker/test/hooker_test.js +0 -435
- package/http/node_modules/http-errors/HISTORY.md +0 -149
- package/http/node_modules/http-errors/LICENSE +0 -23
- package/http/node_modules/http-errors/README.md +0 -163
- package/http/node_modules/http-errors/index.js +0 -266
- package/http/node_modules/http-errors/package.json +0 -93
- package/http/node_modules/iconv-lite/Changelog.md +0 -162
- package/http/node_modules/iconv-lite/LICENSE +0 -21
- package/http/node_modules/iconv-lite/README.md +0 -156
- package/http/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -555
- package/http/node_modules/iconv-lite/encodings/dbcs-data.js +0 -176
- package/http/node_modules/iconv-lite/encodings/index.js +0 -22
- package/http/node_modules/iconv-lite/encodings/internal.js +0 -188
- package/http/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -72
- package/http/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
- package/http/node_modules/iconv-lite/encodings/sbcs-data.js +0 -174
- package/http/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
- package/http/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
- package/http/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
- package/http/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
- package/http/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
- package/http/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
- package/http/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -55
- package/http/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
- package/http/node_modules/iconv-lite/encodings/utf16.js +0 -177
- package/http/node_modules/iconv-lite/encodings/utf7.js +0 -290
- package/http/node_modules/iconv-lite/lib/bom-handling.js +0 -52
- package/http/node_modules/iconv-lite/lib/extend-node.js +0 -217
- package/http/node_modules/iconv-lite/lib/index.d.ts +0 -24
- package/http/node_modules/iconv-lite/lib/index.js +0 -153
- package/http/node_modules/iconv-lite/lib/streams.js +0 -121
- package/http/node_modules/iconv-lite/package.json +0 -78
- package/http/node_modules/inflight/LICENSE +0 -15
- package/http/node_modules/inflight/README.md +0 -37
- package/http/node_modules/inflight/inflight.js +0 -54
- package/http/node_modules/inflight/package.json +0 -59
- package/http/node_modules/inherits/LICENSE +0 -16
- package/http/node_modules/inherits/README.md +0 -42
- package/http/node_modules/inherits/inherits.js +0 -7
- package/http/node_modules/inherits/inherits_browser.js +0 -23
- package/http/node_modules/inherits/package.json +0 -63
- package/http/node_modules/ini/LICENSE +0 -15
- package/http/node_modules/ini/README.md +0 -102
- package/http/node_modules/ini/ini.js +0 -206
- package/http/node_modules/ini/package.json +0 -66
- package/http/node_modules/interpret/CHANGELOG +0 -115
- package/http/node_modules/interpret/LICENSE +0 -22
- package/http/node_modules/interpret/README.md +0 -145
- package/http/node_modules/interpret/index.js +0 -141
- package/http/node_modules/interpret/package.json +0 -78
- package/http/node_modules/ipaddr.js/LICENSE +0 -19
- package/http/node_modules/ipaddr.js/README.md +0 -233
- package/http/node_modules/ipaddr.js/ipaddr.min.js +0 -1
- package/http/node_modules/ipaddr.js/lib/ipaddr.js +0 -673
- package/http/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +0 -68
- package/http/node_modules/ipaddr.js/package.json +0 -70
- package/http/node_modules/is-absolute/LICENSE +0 -22
- package/http/node_modules/is-absolute/README.md +0 -114
- package/http/node_modules/is-absolute/index.js +0 -47
- package/http/node_modules/is-absolute/package.json +0 -133
- package/http/node_modules/is-accessor-descriptor/LICENSE +0 -21
- package/http/node_modules/is-accessor-descriptor/README.md +0 -123
- package/http/node_modules/is-accessor-descriptor/index.js +0 -69
- package/http/node_modules/is-accessor-descriptor/package.json +0 -94
- package/http/node_modules/is-buffer/LICENSE +0 -21
- package/http/node_modules/is-buffer/README.md +0 -53
- package/http/node_modules/is-buffer/index.js +0 -21
- package/http/node_modules/is-buffer/package.json +0 -83
- package/http/node_modules/is-buffer/test/basic.js +0 -24
- package/http/node_modules/is-core-module/.eslintignore +0 -1
- package/http/node_modules/is-core-module/.eslintrc +0 -18
- package/http/node_modules/is-core-module/.nycrc +0 -13
- package/http/node_modules/is-core-module/CHANGELOG.md +0 -58
- package/http/node_modules/is-core-module/LICENSE +0 -20
- package/http/node_modules/is-core-module/README.md +0 -37
- package/http/node_modules/is-core-module/core.json +0 -83
- package/http/node_modules/is-core-module/index.js +0 -69
- package/http/node_modules/is-core-module/package.json +0 -94
- package/http/node_modules/is-core-module/test/index.js +0 -83
- package/http/node_modules/is-data-descriptor/LICENSE +0 -21
- package/http/node_modules/is-data-descriptor/README.md +0 -128
- package/http/node_modules/is-data-descriptor/index.js +0 -55
- package/http/node_modules/is-data-descriptor/package.json +0 -93
- package/http/node_modules/is-descriptor/LICENSE +0 -21
- package/http/node_modules/is-descriptor/README.md +0 -193
- package/http/node_modules/is-descriptor/index.js +0 -22
- package/http/node_modules/is-descriptor/package.json +0 -118
- package/http/node_modules/is-extendable/LICENSE +0 -21
- package/http/node_modules/is-extendable/README.md +0 -72
- package/http/node_modules/is-extendable/index.js +0 -13
- package/http/node_modules/is-extendable/package.json +0 -89
- package/http/node_modules/is-extglob/LICENSE +0 -21
- package/http/node_modules/is-extglob/README.md +0 -107
- package/http/node_modules/is-extglob/index.js +0 -20
- package/http/node_modules/is-extglob/package.json +0 -100
- package/http/node_modules/is-glob/LICENSE +0 -21
- package/http/node_modules/is-glob/README.md +0 -142
- package/http/node_modules/is-glob/index.js +0 -25
- package/http/node_modules/is-glob/package.json +0 -119
- package/http/node_modules/is-number/LICENSE +0 -21
- package/http/node_modules/is-number/README.md +0 -115
- package/http/node_modules/is-number/index.js +0 -22
- package/http/node_modules/is-number/package.json +0 -125
- package/http/node_modules/is-plain-object/LICENSE +0 -21
- package/http/node_modules/is-plain-object/README.md +0 -104
- package/http/node_modules/is-plain-object/index.d.ts +0 -5
- package/http/node_modules/is-plain-object/index.js +0 -37
- package/http/node_modules/is-plain-object/package.json +0 -125
- package/http/node_modules/is-relative/LICENSE +0 -21
- package/http/node_modules/is-relative/README.md +0 -77
- package/http/node_modules/is-relative/index.js +0 -12
- package/http/node_modules/is-relative/package.json +0 -108
- package/http/node_modules/is-unc-path/LICENSE +0 -21
- package/http/node_modules/is-unc-path/README.md +0 -115
- package/http/node_modules/is-unc-path/index.js +0 -10
- package/http/node_modules/is-unc-path/package.json +0 -96
- package/http/node_modules/is-windows/LICENSE +0 -21
- package/http/node_modules/is-windows/README.md +0 -95
- package/http/node_modules/is-windows/index.js +0 -27
- package/http/node_modules/is-windows/package.json +0 -114
- package/http/node_modules/isarray/.travis.yml +0 -4
- package/http/node_modules/isarray/Makefile +0 -6
- package/http/node_modules/isarray/README.md +0 -60
- package/http/node_modules/isarray/component.json +0 -19
- package/http/node_modules/isarray/index.js +0 -5
- package/http/node_modules/isarray/package.json +0 -73
- package/http/node_modules/isarray/test.js +0 -20
- package/http/node_modules/isexe/LICENSE +0 -15
- package/http/node_modules/isexe/README.md +0 -51
- package/http/node_modules/isexe/index.js +0 -57
- package/http/node_modules/isexe/mode.js +0 -41
- package/http/node_modules/isexe/package.json +0 -60
- package/http/node_modules/isexe/test/basic.js +0 -221
- package/http/node_modules/isexe/windows.js +0 -42
- package/http/node_modules/isobject/LICENSE +0 -21
- package/http/node_modules/isobject/README.md +0 -122
- package/http/node_modules/isobject/index.d.ts +0 -5
- package/http/node_modules/isobject/index.js +0 -12
- package/http/node_modules/isobject/package.json +0 -130
- package/http/node_modules/jquery/AUTHORS.txt +0 -327
- package/http/node_modules/jquery/LICENSE.txt +0 -20
- package/http/node_modules/jquery/README.md +0 -62
- package/http/node_modules/jquery/bower.json +0 -14
- package/http/node_modules/jquery/dist/jquery.js +0 -10872
- package/http/node_modules/jquery/dist/jquery.min.js +0 -2
- package/http/node_modules/jquery/dist/jquery.min.map +0 -1
- package/http/node_modules/jquery/dist/jquery.slim.js +0 -8777
- package/http/node_modules/jquery/dist/jquery.slim.min.js +0 -2
- package/http/node_modules/jquery/dist/jquery.slim.min.map +0 -1
- package/http/node_modules/jquery/external/sizzle/LICENSE.txt +0 -36
- package/http/node_modules/jquery/external/sizzle/dist/sizzle.js +0 -2478
- package/http/node_modules/jquery/external/sizzle/dist/sizzle.min.js +0 -3
- package/http/node_modules/jquery/external/sizzle/dist/sizzle.min.map +0 -1
- package/http/node_modules/jquery/package.json +0 -142
- package/http/node_modules/jquery/src/ajax/jsonp.js +0 -103
- package/http/node_modules/jquery/src/ajax/load.js +0 -77
- package/http/node_modules/jquery/src/ajax/script.js +0 -74
- package/http/node_modules/jquery/src/ajax/var/location.js +0 -5
- package/http/node_modules/jquery/src/ajax/var/nonce.js +0 -5
- package/http/node_modules/jquery/src/ajax/var/rquery.js +0 -5
- package/http/node_modules/jquery/src/ajax/xhr.js +0 -170
- package/http/node_modules/jquery/src/ajax.js +0 -873
- package/http/node_modules/jquery/src/attributes/attr.js +0 -141
- package/http/node_modules/jquery/src/attributes/classes.js +0 -186
- package/http/node_modules/jquery/src/attributes/prop.js +0 -143
- package/http/node_modules/jquery/src/attributes/support.js +0 -33
- package/http/node_modules/jquery/src/attributes/val.js +0 -191
- package/http/node_modules/jquery/src/attributes.js +0 -13
- package/http/node_modules/jquery/src/callbacks.js +0 -236
- package/http/node_modules/jquery/src/core/DOMEval.js +0 -43
- package/http/node_modules/jquery/src/core/access.js +0 -72
- package/http/node_modules/jquery/src/core/camelCase.js +0 -23
- package/http/node_modules/jquery/src/core/init.js +0 -129
- package/http/node_modules/jquery/src/core/isAttached.js +0 -26
- package/http/node_modules/jquery/src/core/nodeName.js +0 -13
- package/http/node_modules/jquery/src/core/parseHTML.js +0 -65
- package/http/node_modules/jquery/src/core/parseXML.js +0 -30
- package/http/node_modules/jquery/src/core/ready-no-deferred.js +0 -97
- package/http/node_modules/jquery/src/core/ready.js +0 -86
- package/http/node_modules/jquery/src/core/readyException.js +0 -13
- package/http/node_modules/jquery/src/core/stripAndCollapse.js +0 -14
- package/http/node_modules/jquery/src/core/support.js +0 -20
- package/http/node_modules/jquery/src/core/toType.js +0 -20
- package/http/node_modules/jquery/src/core/var/rsingleTag.js +0 -7
- package/http/node_modules/jquery/src/core.js +0 -400
- package/http/node_modules/jquery/src/css/addGetHookIf.js +0 -26
- package/http/node_modules/jquery/src/css/adjustCSS.js +0 -74
- package/http/node_modules/jquery/src/css/curCSS.js +0 -65
- package/http/node_modules/jquery/src/css/finalPropName.js +0 -42
- package/http/node_modules/jquery/src/css/hiddenVisibleSelectors.js +0 -15
- package/http/node_modules/jquery/src/css/showHide.js +0 -105
- package/http/node_modules/jquery/src/css/support.js +0 -133
- package/http/node_modules/jquery/src/css/var/cssExpand.js +0 -5
- package/http/node_modules/jquery/src/css/var/getStyles.js +0 -17
- package/http/node_modules/jquery/src/css/var/isHiddenWithinTree.js +0 -34
- package/http/node_modules/jquery/src/css/var/rboxStyle.js +0 -7
- package/http/node_modules/jquery/src/css/var/rnumnonpx.js +0 -7
- package/http/node_modules/jquery/src/css/var/swap.js +0 -26
- package/http/node_modules/jquery/src/css.js +0 -494
- package/http/node_modules/jquery/src/data/Data.js +0 -162
- package/http/node_modules/jquery/src/data/var/acceptData.js +0 -19
- package/http/node_modules/jquery/src/data/var/dataPriv.js +0 -7
- package/http/node_modules/jquery/src/data/var/dataUser.js +0 -7
- package/http/node_modules/jquery/src/data.js +0 -180
- package/http/node_modules/jquery/src/deferred/exceptionHook.js +0 -21
- package/http/node_modules/jquery/src/deferred.js +0 -399
- package/http/node_modules/jquery/src/deprecated/ajax-event-alias.js +0 -22
- package/http/node_modules/jquery/src/deprecated/event.js +0 -48
- package/http/node_modules/jquery/src/deprecated.js +0 -87
- package/http/node_modules/jquery/src/dimensions.js +0 -57
- package/http/node_modules/jquery/src/effects/Tween.js +0 -125
- package/http/node_modules/jquery/src/effects/animatedSelector.js +0 -15
- package/http/node_modules/jquery/src/effects.js +0 -701
- package/http/node_modules/jquery/src/event/focusin.js +0 -58
- package/http/node_modules/jquery/src/event/support.js +0 -11
- package/http/node_modules/jquery/src/event/trigger.js +0 -201
- package/http/node_modules/jquery/src/event.js +0 -892
- package/http/node_modules/jquery/src/exports/amd.js +0 -26
- package/http/node_modules/jquery/src/exports/global.js +0 -34
- package/http/node_modules/jquery/src/jquery.js +0 -41
- package/http/node_modules/jquery/src/manipulation/_evalUrl.js +0 -32
- package/http/node_modules/jquery/src/manipulation/buildFragment.js +0 -106
- package/http/node_modules/jquery/src/manipulation/getAll.js +0 -32
- package/http/node_modules/jquery/src/manipulation/setGlobalEval.js +0 -22
- package/http/node_modules/jquery/src/manipulation/support.js +0 -41
- package/http/node_modules/jquery/src/manipulation/var/rscriptType.js +0 -5
- package/http/node_modules/jquery/src/manipulation/var/rtagName.js +0 -8
- package/http/node_modules/jquery/src/manipulation/wrapMap.js +0 -30
- package/http/node_modules/jquery/src/manipulation.js +0 -480
- package/http/node_modules/jquery/src/offset.js +0 -238
- package/http/node_modules/jquery/src/queue/delay.js +0 -24
- package/http/node_modules/jquery/src/queue.js +0 -145
- package/http/node_modules/jquery/src/selector-native.js +0 -241
- package/http/node_modules/jquery/src/selector-sizzle.js +0 -19
- package/http/node_modules/jquery/src/selector.js +0 -3
- package/http/node_modules/jquery/src/serialize.js +0 -136
- package/http/node_modules/jquery/src/traversing/findFilter.js +0 -97
- package/http/node_modules/jquery/src/traversing/var/dir.js +0 -22
- package/http/node_modules/jquery/src/traversing/var/rneedsContext.js +0 -8
- package/http/node_modules/jquery/src/traversing/var/siblings.js +0 -17
- package/http/node_modules/jquery/src/traversing.js +0 -198
- package/http/node_modules/jquery/src/var/ObjectFunctionString.js +0 -7
- package/http/node_modules/jquery/src/var/arr.js +0 -5
- package/http/node_modules/jquery/src/var/class2type.js +0 -6
- package/http/node_modules/jquery/src/var/document.js +0 -5
- package/http/node_modules/jquery/src/var/documentElement.js +0 -7
- package/http/node_modules/jquery/src/var/flat.js +0 -16
- package/http/node_modules/jquery/src/var/fnToString.js +0 -7
- package/http/node_modules/jquery/src/var/getProto.js +0 -5
- package/http/node_modules/jquery/src/var/hasOwn.js +0 -7
- package/http/node_modules/jquery/src/var/indexOf.js +0 -7
- package/http/node_modules/jquery/src/var/isFunction.js +0 -13
- package/http/node_modules/jquery/src/var/isWindow.js +0 -8
- package/http/node_modules/jquery/src/var/pnum.js +0 -5
- package/http/node_modules/jquery/src/var/push.js +0 -7
- package/http/node_modules/jquery/src/var/rcheckableType.js +0 -5
- package/http/node_modules/jquery/src/var/rcssNum.js +0 -9
- package/http/node_modules/jquery/src/var/rnothtmlwhite.js +0 -8
- package/http/node_modules/jquery/src/var/slice.js +0 -7
- package/http/node_modules/jquery/src/var/support.js +0 -6
- package/http/node_modules/jquery/src/var/toString.js +0 -7
- package/http/node_modules/jquery/src/wrap.js +0 -78
- package/http/node_modules/js-yaml/CHANGELOG.md +0 -557
- package/http/node_modules/js-yaml/LICENSE +0 -21
- package/http/node_modules/js-yaml/README.md +0 -299
- package/http/node_modules/js-yaml/bin/js-yaml.js +0 -132
- package/http/node_modules/js-yaml/dist/js-yaml.js +0 -3989
- package/http/node_modules/js-yaml/dist/js-yaml.min.js +0 -1
- package/http/node_modules/js-yaml/index.js +0 -7
- package/http/node_modules/js-yaml/lib/js-yaml/common.js +0 -59
- package/http/node_modules/js-yaml/lib/js-yaml/dumper.js +0 -850
- package/http/node_modules/js-yaml/lib/js-yaml/exception.js +0 -43
- package/http/node_modules/js-yaml/lib/js-yaml/loader.js +0 -1644
- package/http/node_modules/js-yaml/lib/js-yaml/mark.js +0 -76
- package/http/node_modules/js-yaml/lib/js-yaml/schema/core.js +0 -18
- package/http/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +0 -25
- package/http/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +0 -28
- package/http/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +0 -17
- package/http/node_modules/js-yaml/lib/js-yaml/schema/json.js +0 -25
- package/http/node_modules/js-yaml/lib/js-yaml/schema.js +0 -108
- package/http/node_modules/js-yaml/lib/js-yaml/type/binary.js +0 -138
- package/http/node_modules/js-yaml/lib/js-yaml/type/bool.js +0 -35
- package/http/node_modules/js-yaml/lib/js-yaml/type/float.js +0 -116
- package/http/node_modules/js-yaml/lib/js-yaml/type/int.js +0 -173
- package/http/node_modules/js-yaml/lib/js-yaml/type/js/function.js +0 -93
- package/http/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +0 -60
- package/http/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +0 -28
- package/http/node_modules/js-yaml/lib/js-yaml/type/map.js +0 -8
- package/http/node_modules/js-yaml/lib/js-yaml/type/merge.js +0 -12
- package/http/node_modules/js-yaml/lib/js-yaml/type/null.js +0 -34
- package/http/node_modules/js-yaml/lib/js-yaml/type/omap.js +0 -44
- package/http/node_modules/js-yaml/lib/js-yaml/type/pairs.js +0 -53
- package/http/node_modules/js-yaml/lib/js-yaml/type/seq.js +0 -8
- package/http/node_modules/js-yaml/lib/js-yaml/type/set.js +0 -29
- package/http/node_modules/js-yaml/lib/js-yaml/type/str.js +0 -8
- package/http/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +0 -88
- package/http/node_modules/js-yaml/lib/js-yaml/type.js +0 -61
- package/http/node_modules/js-yaml/lib/js-yaml.js +0 -39
- package/http/node_modules/js-yaml/package.json +0 -95
- package/http/node_modules/kind-of/CHANGELOG.md +0 -160
- package/http/node_modules/kind-of/LICENSE +0 -21
- package/http/node_modules/kind-of/README.md +0 -367
- package/http/node_modules/kind-of/index.js +0 -129
- package/http/node_modules/kind-of/package.json +0 -157
- package/http/node_modules/liftoff/CHANGELOG +0 -127
- package/http/node_modules/liftoff/LICENSE +0 -22
- package/http/node_modules/liftoff/README.md +0 -451
- package/http/node_modules/liftoff/index.js +0 -211
- package/http/node_modules/liftoff/lib/build_config_name.js +0 -17
- package/http/node_modules/liftoff/lib/file_search.js +0 -14
- package/http/node_modules/liftoff/lib/find_config.js +0 -25
- package/http/node_modules/liftoff/lib/find_cwd.js +0 -18
- package/http/node_modules/liftoff/lib/get_node_flags.js +0 -30
- package/http/node_modules/liftoff/lib/parse_options.js +0 -35
- package/http/node_modules/liftoff/lib/register_loader.js +0 -24
- package/http/node_modules/liftoff/lib/silent_require.js +0 -5
- package/http/node_modules/liftoff/package.json +0 -84
- package/http/node_modules/lodash/LICENSE +0 -47
- package/http/node_modules/lodash/README.md +0 -39
- package/http/node_modules/lodash/_DataView.js +0 -7
- package/http/node_modules/lodash/_Hash.js +0 -32
- package/http/node_modules/lodash/_LazyWrapper.js +0 -28
- package/http/node_modules/lodash/_ListCache.js +0 -32
- package/http/node_modules/lodash/_LodashWrapper.js +0 -22
- package/http/node_modules/lodash/_Map.js +0 -7
- package/http/node_modules/lodash/_MapCache.js +0 -32
- package/http/node_modules/lodash/_Promise.js +0 -7
- package/http/node_modules/lodash/_Set.js +0 -7
- package/http/node_modules/lodash/_SetCache.js +0 -27
- package/http/node_modules/lodash/_Stack.js +0 -27
- package/http/node_modules/lodash/_Symbol.js +0 -6
- package/http/node_modules/lodash/_Uint8Array.js +0 -6
- package/http/node_modules/lodash/_WeakMap.js +0 -7
- package/http/node_modules/lodash/_apply.js +0 -21
- package/http/node_modules/lodash/_arrayAggregator.js +0 -22
- package/http/node_modules/lodash/_arrayEach.js +0 -22
- package/http/node_modules/lodash/_arrayEachRight.js +0 -21
- package/http/node_modules/lodash/_arrayEvery.js +0 -23
- package/http/node_modules/lodash/_arrayFilter.js +0 -25
- package/http/node_modules/lodash/_arrayIncludes.js +0 -17
- package/http/node_modules/lodash/_arrayIncludesWith.js +0 -22
- package/http/node_modules/lodash/_arrayLikeKeys.js +0 -49
- package/http/node_modules/lodash/_arrayMap.js +0 -21
- package/http/node_modules/lodash/_arrayPush.js +0 -20
- package/http/node_modules/lodash/_arrayReduce.js +0 -26
- package/http/node_modules/lodash/_arrayReduceRight.js +0 -24
- package/http/node_modules/lodash/_arraySample.js +0 -15
- package/http/node_modules/lodash/_arraySampleSize.js +0 -17
- package/http/node_modules/lodash/_arrayShuffle.js +0 -15
- package/http/node_modules/lodash/_arraySome.js +0 -23
- package/http/node_modules/lodash/_asciiSize.js +0 -12
- package/http/node_modules/lodash/_asciiToArray.js +0 -12
- package/http/node_modules/lodash/_asciiWords.js +0 -15
- package/http/node_modules/lodash/_assignMergeValue.js +0 -20
- package/http/node_modules/lodash/_assignValue.js +0 -28
- package/http/node_modules/lodash/_assocIndexOf.js +0 -21
- package/http/node_modules/lodash/_baseAggregator.js +0 -21
- package/http/node_modules/lodash/_baseAssign.js +0 -17
- package/http/node_modules/lodash/_baseAssignIn.js +0 -17
- package/http/node_modules/lodash/_baseAssignValue.js +0 -25
- package/http/node_modules/lodash/_baseAt.js +0 -23
- package/http/node_modules/lodash/_baseClamp.js +0 -22
- package/http/node_modules/lodash/_baseClone.js +0 -166
- package/http/node_modules/lodash/_baseConforms.js +0 -18
- package/http/node_modules/lodash/_baseConformsTo.js +0 -27
- package/http/node_modules/lodash/_baseCreate.js +0 -30
- package/http/node_modules/lodash/_baseDelay.js +0 -21
- package/http/node_modules/lodash/_baseDifference.js +0 -67
- package/http/node_modules/lodash/_baseEach.js +0 -14
- package/http/node_modules/lodash/_baseEachRight.js +0 -14
- package/http/node_modules/lodash/_baseEvery.js +0 -21
- package/http/node_modules/lodash/_baseExtremum.js +0 -32
- package/http/node_modules/lodash/_baseFill.js +0 -32
- package/http/node_modules/lodash/_baseFilter.js +0 -21
- package/http/node_modules/lodash/_baseFindIndex.js +0 -24
- package/http/node_modules/lodash/_baseFindKey.js +0 -23
- package/http/node_modules/lodash/_baseFlatten.js +0 -38
- package/http/node_modules/lodash/_baseFor.js +0 -16
- package/http/node_modules/lodash/_baseForOwn.js +0 -16
- package/http/node_modules/lodash/_baseForOwnRight.js +0 -16
- package/http/node_modules/lodash/_baseForRight.js +0 -15
- package/http/node_modules/lodash/_baseFunctions.js +0 -19
- package/http/node_modules/lodash/_baseGet.js +0 -24
- package/http/node_modules/lodash/_baseGetAllKeys.js +0 -20
- package/http/node_modules/lodash/_baseGetTag.js +0 -28
- package/http/node_modules/lodash/_baseGt.js +0 -14
- package/http/node_modules/lodash/_baseHas.js +0 -19
- package/http/node_modules/lodash/_baseHasIn.js +0 -13
- package/http/node_modules/lodash/_baseInRange.js +0 -18
- package/http/node_modules/lodash/_baseIndexOf.js +0 -20
- package/http/node_modules/lodash/_baseIndexOfWith.js +0 -23
- package/http/node_modules/lodash/_baseIntersection.js +0 -74
- package/http/node_modules/lodash/_baseInverter.js +0 -21
- package/http/node_modules/lodash/_baseInvoke.js +0 -24
- package/http/node_modules/lodash/_baseIsArguments.js +0 -18
- package/http/node_modules/lodash/_baseIsArrayBuffer.js +0 -17
- package/http/node_modules/lodash/_baseIsDate.js +0 -18
- package/http/node_modules/lodash/_baseIsEqual.js +0 -28
- package/http/node_modules/lodash/_baseIsEqualDeep.js +0 -83
- package/http/node_modules/lodash/_baseIsMap.js +0 -18
- package/http/node_modules/lodash/_baseIsMatch.js +0 -62
- package/http/node_modules/lodash/_baseIsNaN.js +0 -12
- package/http/node_modules/lodash/_baseIsNative.js +0 -47
- package/http/node_modules/lodash/_baseIsRegExp.js +0 -18
- package/http/node_modules/lodash/_baseIsSet.js +0 -18
- package/http/node_modules/lodash/_baseIsTypedArray.js +0 -60
- package/http/node_modules/lodash/_baseIteratee.js +0 -31
- package/http/node_modules/lodash/_baseKeys.js +0 -30
- package/http/node_modules/lodash/_baseKeysIn.js +0 -33
- package/http/node_modules/lodash/_baseLodash.js +0 -10
- package/http/node_modules/lodash/_baseLt.js +0 -14
- package/http/node_modules/lodash/_baseMap.js +0 -22
- package/http/node_modules/lodash/_baseMatches.js +0 -22
- package/http/node_modules/lodash/_baseMatchesProperty.js +0 -33
- package/http/node_modules/lodash/_baseMean.js +0 -20
- package/http/node_modules/lodash/_baseMerge.js +0 -42
- package/http/node_modules/lodash/_baseMergeDeep.js +0 -94
- package/http/node_modules/lodash/_baseNth.js +0 -20
- package/http/node_modules/lodash/_baseOrderBy.js +0 -49
- package/http/node_modules/lodash/_basePick.js +0 -19
- package/http/node_modules/lodash/_basePickBy.js +0 -30
- package/http/node_modules/lodash/_baseProperty.js +0 -14
- package/http/node_modules/lodash/_basePropertyDeep.js +0 -16
- package/http/node_modules/lodash/_basePropertyOf.js +0 -14
- package/http/node_modules/lodash/_basePullAll.js +0 -51
- package/http/node_modules/lodash/_basePullAt.js +0 -37
- package/http/node_modules/lodash/_baseRandom.js +0 -18
- package/http/node_modules/lodash/_baseRange.js +0 -28
- package/http/node_modules/lodash/_baseReduce.js +0 -23
- package/http/node_modules/lodash/_baseRepeat.js +0 -35
- package/http/node_modules/lodash/_baseRest.js +0 -17
- package/http/node_modules/lodash/_baseSample.js +0 -15
- package/http/node_modules/lodash/_baseSampleSize.js +0 -18
- package/http/node_modules/lodash/_baseSet.js +0 -51
- package/http/node_modules/lodash/_baseSetData.js +0 -17
- package/http/node_modules/lodash/_baseSetToString.js +0 -22
- package/http/node_modules/lodash/_baseShuffle.js +0 -15
- package/http/node_modules/lodash/_baseSlice.js +0 -31
- package/http/node_modules/lodash/_baseSome.js +0 -22
- package/http/node_modules/lodash/_baseSortBy.js +0 -21
- package/http/node_modules/lodash/_baseSortedIndex.js +0 -42
- package/http/node_modules/lodash/_baseSortedIndexBy.js +0 -67
- package/http/node_modules/lodash/_baseSortedUniq.js +0 -30
- package/http/node_modules/lodash/_baseSum.js +0 -24
- package/http/node_modules/lodash/_baseTimes.js +0 -20
- package/http/node_modules/lodash/_baseToNumber.js +0 -24
- package/http/node_modules/lodash/_baseToPairs.js +0 -18
- package/http/node_modules/lodash/_baseToString.js +0 -37
- package/http/node_modules/lodash/_baseUnary.js +0 -14
- package/http/node_modules/lodash/_baseUniq.js +0 -72
- package/http/node_modules/lodash/_baseUnset.js +0 -20
- package/http/node_modules/lodash/_baseUpdate.js +0 -18
- package/http/node_modules/lodash/_baseValues.js +0 -19
- package/http/node_modules/lodash/_baseWhile.js +0 -26
- package/http/node_modules/lodash/_baseWrapperValue.js +0 -25
- package/http/node_modules/lodash/_baseXor.js +0 -36
- package/http/node_modules/lodash/_baseZipObject.js +0 -23
- package/http/node_modules/lodash/_cacheHas.js +0 -13
- package/http/node_modules/lodash/_castArrayLikeObject.js +0 -14
- package/http/node_modules/lodash/_castFunction.js +0 -14
- package/http/node_modules/lodash/_castPath.js +0 -21
- package/http/node_modules/lodash/_castRest.js +0 -14
- package/http/node_modules/lodash/_castSlice.js +0 -18
- package/http/node_modules/lodash/_charsEndIndex.js +0 -19
- package/http/node_modules/lodash/_charsStartIndex.js +0 -20
- package/http/node_modules/lodash/_cloneArrayBuffer.js +0 -16
- package/http/node_modules/lodash/_cloneBuffer.js +0 -35
- package/http/node_modules/lodash/_cloneDataView.js +0 -16
- package/http/node_modules/lodash/_cloneRegExp.js +0 -17
- package/http/node_modules/lodash/_cloneSymbol.js +0 -18
- package/http/node_modules/lodash/_cloneTypedArray.js +0 -16
- package/http/node_modules/lodash/_compareAscending.js +0 -41
- package/http/node_modules/lodash/_compareMultiple.js +0 -44
- package/http/node_modules/lodash/_composeArgs.js +0 -39
- package/http/node_modules/lodash/_composeArgsRight.js +0 -41
- package/http/node_modules/lodash/_copyArray.js +0 -20
- package/http/node_modules/lodash/_copyObject.js +0 -40
- package/http/node_modules/lodash/_copySymbols.js +0 -16
- package/http/node_modules/lodash/_copySymbolsIn.js +0 -16
- package/http/node_modules/lodash/_coreJsData.js +0 -6
- package/http/node_modules/lodash/_countHolders.js +0 -21
- package/http/node_modules/lodash/_createAggregator.js +0 -23
- package/http/node_modules/lodash/_createAssigner.js +0 -37
- package/http/node_modules/lodash/_createBaseEach.js +0 -32
- package/http/node_modules/lodash/_createBaseFor.js +0 -25
- package/http/node_modules/lodash/_createBind.js +0 -28
- package/http/node_modules/lodash/_createCaseFirst.js +0 -33
- package/http/node_modules/lodash/_createCompounder.js +0 -24
- package/http/node_modules/lodash/_createCtor.js +0 -37
- package/http/node_modules/lodash/_createCurry.js +0 -46
- package/http/node_modules/lodash/_createFind.js +0 -25
- package/http/node_modules/lodash/_createFlow.js +0 -78
- package/http/node_modules/lodash/_createHybrid.js +0 -92
- package/http/node_modules/lodash/_createInverter.js +0 -17
- package/http/node_modules/lodash/_createMathOperation.js +0 -38
- package/http/node_modules/lodash/_createOver.js +0 -27
- package/http/node_modules/lodash/_createPadding.js +0 -33
- package/http/node_modules/lodash/_createPartial.js +0 -43
- package/http/node_modules/lodash/_createRange.js +0 -30
- package/http/node_modules/lodash/_createRecurry.js +0 -56
- package/http/node_modules/lodash/_createRelationalOperation.js +0 -20
- package/http/node_modules/lodash/_createRound.js +0 -35
- package/http/node_modules/lodash/_createSet.js +0 -19
- package/http/node_modules/lodash/_createToPairs.js +0 -30
- package/http/node_modules/lodash/_createWrap.js +0 -106
- package/http/node_modules/lodash/_customDefaultsAssignIn.js +0 -29
- package/http/node_modules/lodash/_customDefaultsMerge.js +0 -28
- package/http/node_modules/lodash/_customOmitClone.js +0 -16
- package/http/node_modules/lodash/_deburrLetter.js +0 -71
- package/http/node_modules/lodash/_defineProperty.js +0 -11
- package/http/node_modules/lodash/_equalArrays.js +0 -84
- package/http/node_modules/lodash/_equalByTag.js +0 -112
- package/http/node_modules/lodash/_equalObjects.js +0 -90
- package/http/node_modules/lodash/_escapeHtmlChar.js +0 -21
- package/http/node_modules/lodash/_escapeStringChar.js +0 -22
- package/http/node_modules/lodash/_flatRest.js +0 -16
- package/http/node_modules/lodash/_freeGlobal.js +0 -4
- package/http/node_modules/lodash/_getAllKeys.js +0 -16
- package/http/node_modules/lodash/_getAllKeysIn.js +0 -17
- package/http/node_modules/lodash/_getData.js +0 -15
- package/http/node_modules/lodash/_getFuncName.js +0 -31
- package/http/node_modules/lodash/_getHolder.js +0 -13
- package/http/node_modules/lodash/_getMapData.js +0 -18
- package/http/node_modules/lodash/_getMatchData.js +0 -24
- package/http/node_modules/lodash/_getNative.js +0 -17
- package/http/node_modules/lodash/_getPrototype.js +0 -6
- package/http/node_modules/lodash/_getRawTag.js +0 -46
- package/http/node_modules/lodash/_getSymbols.js +0 -30
- package/http/node_modules/lodash/_getSymbolsIn.js +0 -25
- package/http/node_modules/lodash/_getTag.js +0 -58
- package/http/node_modules/lodash/_getValue.js +0 -13
- package/http/node_modules/lodash/_getView.js +0 -33
- package/http/node_modules/lodash/_getWrapDetails.js +0 -17
- package/http/node_modules/lodash/_hasPath.js +0 -39
- package/http/node_modules/lodash/_hasUnicode.js +0 -26
- package/http/node_modules/lodash/_hasUnicodeWord.js +0 -15
- package/http/node_modules/lodash/_hashClear.js +0 -15
- package/http/node_modules/lodash/_hashDelete.js +0 -17
- package/http/node_modules/lodash/_hashGet.js +0 -30
- package/http/node_modules/lodash/_hashHas.js +0 -23
- package/http/node_modules/lodash/_hashSet.js +0 -23
- package/http/node_modules/lodash/_initCloneArray.js +0 -26
- package/http/node_modules/lodash/_initCloneByTag.js +0 -77
- package/http/node_modules/lodash/_initCloneObject.js +0 -18
- package/http/node_modules/lodash/_insertWrapDetails.js +0 -23
- package/http/node_modules/lodash/_isFlattenable.js +0 -20
- package/http/node_modules/lodash/_isIndex.js +0 -25
- package/http/node_modules/lodash/_isIterateeCall.js +0 -30
- package/http/node_modules/lodash/_isKey.js +0 -29
- package/http/node_modules/lodash/_isKeyable.js +0 -15
- package/http/node_modules/lodash/_isLaziable.js +0 -28
- package/http/node_modules/lodash/_isMaskable.js +0 -14
- package/http/node_modules/lodash/_isMasked.js +0 -20
- package/http/node_modules/lodash/_isPrototype.js +0 -18
- package/http/node_modules/lodash/_isStrictComparable.js +0 -15
- package/http/node_modules/lodash/_iteratorToArray.js +0 -18
- package/http/node_modules/lodash/_lazyClone.js +0 -23
- package/http/node_modules/lodash/_lazyReverse.js +0 -23
- package/http/node_modules/lodash/_lazyValue.js +0 -69
- package/http/node_modules/lodash/_listCacheClear.js +0 -13
- package/http/node_modules/lodash/_listCacheDelete.js +0 -35
- package/http/node_modules/lodash/_listCacheGet.js +0 -19
- package/http/node_modules/lodash/_listCacheHas.js +0 -16
- package/http/node_modules/lodash/_listCacheSet.js +0 -26
- package/http/node_modules/lodash/_mapCacheClear.js +0 -21
- package/http/node_modules/lodash/_mapCacheDelete.js +0 -18
- package/http/node_modules/lodash/_mapCacheGet.js +0 -16
- package/http/node_modules/lodash/_mapCacheHas.js +0 -16
- package/http/node_modules/lodash/_mapCacheSet.js +0 -22
- package/http/node_modules/lodash/_mapToArray.js +0 -18
- package/http/node_modules/lodash/_matchesStrictComparable.js +0 -20
- package/http/node_modules/lodash/_memoizeCapped.js +0 -26
- package/http/node_modules/lodash/_mergeData.js +0 -90
- package/http/node_modules/lodash/_metaMap.js +0 -6
- package/http/node_modules/lodash/_nativeCreate.js +0 -6
- package/http/node_modules/lodash/_nativeKeys.js +0 -6
- package/http/node_modules/lodash/_nativeKeysIn.js +0 -20
- package/http/node_modules/lodash/_nodeUtil.js +0 -30
- package/http/node_modules/lodash/_objectToString.js +0 -22
- package/http/node_modules/lodash/_overArg.js +0 -15
- package/http/node_modules/lodash/_overRest.js +0 -36
- package/http/node_modules/lodash/_parent.js +0 -16
- package/http/node_modules/lodash/_reEscape.js +0 -4
- package/http/node_modules/lodash/_reEvaluate.js +0 -4
- package/http/node_modules/lodash/_reInterpolate.js +0 -4
- package/http/node_modules/lodash/_realNames.js +0 -4
- package/http/node_modules/lodash/_reorder.js +0 -29
- package/http/node_modules/lodash/_replaceHolders.js +0 -29
- package/http/node_modules/lodash/_root.js +0 -9
- package/http/node_modules/lodash/_safeGet.js +0 -21
- package/http/node_modules/lodash/_setCacheAdd.js +0 -19
- package/http/node_modules/lodash/_setCacheHas.js +0 -14
- package/http/node_modules/lodash/_setData.js +0 -20
- package/http/node_modules/lodash/_setToArray.js +0 -18
- package/http/node_modules/lodash/_setToPairs.js +0 -18
- package/http/node_modules/lodash/_setToString.js +0 -14
- package/http/node_modules/lodash/_setWrapToString.js +0 -21
- package/http/node_modules/lodash/_shortOut.js +0 -37
- package/http/node_modules/lodash/_shuffleSelf.js +0 -28
- package/http/node_modules/lodash/_stackClear.js +0 -15
- package/http/node_modules/lodash/_stackDelete.js +0 -18
- package/http/node_modules/lodash/_stackGet.js +0 -14
- package/http/node_modules/lodash/_stackHas.js +0 -14
- package/http/node_modules/lodash/_stackSet.js +0 -34
- package/http/node_modules/lodash/_strictIndexOf.js +0 -23
- package/http/node_modules/lodash/_strictLastIndexOf.js +0 -21
- package/http/node_modules/lodash/_stringSize.js +0 -18
- package/http/node_modules/lodash/_stringToArray.js +0 -18
- package/http/node_modules/lodash/_stringToPath.js +0 -27
- package/http/node_modules/lodash/_toKey.js +0 -21
- package/http/node_modules/lodash/_toSource.js +0 -26
- package/http/node_modules/lodash/_unescapeHtmlChar.js +0 -21
- package/http/node_modules/lodash/_unicodeSize.js +0 -44
- package/http/node_modules/lodash/_unicodeToArray.js +0 -40
- package/http/node_modules/lodash/_unicodeWords.js +0 -69
- package/http/node_modules/lodash/_updateWrapDetails.js +0 -46
- package/http/node_modules/lodash/_wrapperClone.js +0 -23
- package/http/node_modules/lodash/add.js +0 -22
- package/http/node_modules/lodash/after.js +0 -42
- package/http/node_modules/lodash/array.js +0 -67
- package/http/node_modules/lodash/ary.js +0 -29
- package/http/node_modules/lodash/assign.js +0 -58
- package/http/node_modules/lodash/assignIn.js +0 -40
- package/http/node_modules/lodash/assignInWith.js +0 -38
- package/http/node_modules/lodash/assignWith.js +0 -37
- package/http/node_modules/lodash/at.js +0 -23
- package/http/node_modules/lodash/attempt.js +0 -35
- package/http/node_modules/lodash/before.js +0 -40
- package/http/node_modules/lodash/bind.js +0 -57
- package/http/node_modules/lodash/bindAll.js +0 -41
- package/http/node_modules/lodash/bindKey.js +0 -68
- package/http/node_modules/lodash/camelCase.js +0 -29
- package/http/node_modules/lodash/capitalize.js +0 -23
- package/http/node_modules/lodash/castArray.js +0 -44
- package/http/node_modules/lodash/ceil.js +0 -26
- package/http/node_modules/lodash/chain.js +0 -38
- package/http/node_modules/lodash/chunk.js +0 -50
- package/http/node_modules/lodash/clamp.js +0 -39
- package/http/node_modules/lodash/clone.js +0 -36
- package/http/node_modules/lodash/cloneDeep.js +0 -29
- package/http/node_modules/lodash/cloneDeepWith.js +0 -40
- package/http/node_modules/lodash/cloneWith.js +0 -42
- package/http/node_modules/lodash/collection.js +0 -30
- package/http/node_modules/lodash/commit.js +0 -33
- package/http/node_modules/lodash/compact.js +0 -31
- package/http/node_modules/lodash/concat.js +0 -43
- package/http/node_modules/lodash/cond.js +0 -60
- package/http/node_modules/lodash/conforms.js +0 -35
- package/http/node_modules/lodash/conformsTo.js +0 -32
- package/http/node_modules/lodash/constant.js +0 -26
- package/http/node_modules/lodash/core.js +0 -3877
- package/http/node_modules/lodash/core.min.js +0 -30
- package/http/node_modules/lodash/countBy.js +0 -40
- package/http/node_modules/lodash/create.js +0 -43
- package/http/node_modules/lodash/curry.js +0 -57
- package/http/node_modules/lodash/curryRight.js +0 -54
- package/http/node_modules/lodash/date.js +0 -3
- package/http/node_modules/lodash/debounce.js +0 -191
- package/http/node_modules/lodash/deburr.js +0 -45
- package/http/node_modules/lodash/defaultTo.js +0 -25
- package/http/node_modules/lodash/defaults.js +0 -64
- package/http/node_modules/lodash/defaultsDeep.js +0 -30
- package/http/node_modules/lodash/defer.js +0 -26
- package/http/node_modules/lodash/delay.js +0 -28
- package/http/node_modules/lodash/difference.js +0 -33
- package/http/node_modules/lodash/differenceBy.js +0 -44
- package/http/node_modules/lodash/differenceWith.js +0 -40
- package/http/node_modules/lodash/divide.js +0 -22
- package/http/node_modules/lodash/drop.js +0 -38
- package/http/node_modules/lodash/dropRight.js +0 -39
- package/http/node_modules/lodash/dropRightWhile.js +0 -45
- package/http/node_modules/lodash/dropWhile.js +0 -45
- package/http/node_modules/lodash/each.js +0 -1
- package/http/node_modules/lodash/eachRight.js +0 -1
- package/http/node_modules/lodash/endsWith.js +0 -43
- package/http/node_modules/lodash/entries.js +0 -1
- package/http/node_modules/lodash/entriesIn.js +0 -1
- package/http/node_modules/lodash/eq.js +0 -37
- package/http/node_modules/lodash/escape.js +0 -43
- package/http/node_modules/lodash/escapeRegExp.js +0 -32
- package/http/node_modules/lodash/every.js +0 -56
- package/http/node_modules/lodash/extend.js +0 -1
- package/http/node_modules/lodash/extendWith.js +0 -1
- package/http/node_modules/lodash/fill.js +0 -45
- package/http/node_modules/lodash/filter.js +0 -52
- package/http/node_modules/lodash/find.js +0 -42
- package/http/node_modules/lodash/findIndex.js +0 -55
- package/http/node_modules/lodash/findKey.js +0 -44
- package/http/node_modules/lodash/findLast.js +0 -25
- package/http/node_modules/lodash/findLastIndex.js +0 -59
- package/http/node_modules/lodash/findLastKey.js +0 -44
- package/http/node_modules/lodash/first.js +0 -1
- package/http/node_modules/lodash/flatMap.js +0 -29
- package/http/node_modules/lodash/flatMapDeep.js +0 -31
- package/http/node_modules/lodash/flatMapDepth.js +0 -31
- package/http/node_modules/lodash/flatten.js +0 -22
- package/http/node_modules/lodash/flattenDeep.js +0 -25
- package/http/node_modules/lodash/flattenDepth.js +0 -33
- package/http/node_modules/lodash/flip.js +0 -28
- package/http/node_modules/lodash/floor.js +0 -26
- package/http/node_modules/lodash/flow.js +0 -27
- package/http/node_modules/lodash/flowRight.js +0 -26
- package/http/node_modules/lodash/forEach.js +0 -41
- package/http/node_modules/lodash/forEachRight.js +0 -31
- package/http/node_modules/lodash/forIn.js +0 -39
- package/http/node_modules/lodash/forInRight.js +0 -37
- package/http/node_modules/lodash/forOwn.js +0 -36
- package/http/node_modules/lodash/forOwnRight.js +0 -34
- package/http/node_modules/lodash/fp/F.js +0 -1
- package/http/node_modules/lodash/fp/T.js +0 -1
- package/http/node_modules/lodash/fp/__.js +0 -1
- package/http/node_modules/lodash/fp/_baseConvert.js +0 -569
- package/http/node_modules/lodash/fp/_convertBrowser.js +0 -18
- package/http/node_modules/lodash/fp/_falseOptions.js +0 -7
- package/http/node_modules/lodash/fp/_mapping.js +0 -358
- package/http/node_modules/lodash/fp/_util.js +0 -16
- package/http/node_modules/lodash/fp/add.js +0 -5
- package/http/node_modules/lodash/fp/after.js +0 -5
- package/http/node_modules/lodash/fp/all.js +0 -1
- package/http/node_modules/lodash/fp/allPass.js +0 -1
- package/http/node_modules/lodash/fp/always.js +0 -1
- package/http/node_modules/lodash/fp/any.js +0 -1
- package/http/node_modules/lodash/fp/anyPass.js +0 -1
- package/http/node_modules/lodash/fp/apply.js +0 -1
- package/http/node_modules/lodash/fp/array.js +0 -2
- package/http/node_modules/lodash/fp/ary.js +0 -5
- package/http/node_modules/lodash/fp/assign.js +0 -5
- package/http/node_modules/lodash/fp/assignAll.js +0 -5
- package/http/node_modules/lodash/fp/assignAllWith.js +0 -5
- package/http/node_modules/lodash/fp/assignIn.js +0 -5
- package/http/node_modules/lodash/fp/assignInAll.js +0 -5
- package/http/node_modules/lodash/fp/assignInAllWith.js +0 -5
- package/http/node_modules/lodash/fp/assignInWith.js +0 -5
- package/http/node_modules/lodash/fp/assignWith.js +0 -5
- package/http/node_modules/lodash/fp/assoc.js +0 -1
- package/http/node_modules/lodash/fp/assocPath.js +0 -1
- package/http/node_modules/lodash/fp/at.js +0 -5
- package/http/node_modules/lodash/fp/attempt.js +0 -5
- package/http/node_modules/lodash/fp/before.js +0 -5
- package/http/node_modules/lodash/fp/bind.js +0 -5
- package/http/node_modules/lodash/fp/bindAll.js +0 -5
- package/http/node_modules/lodash/fp/bindKey.js +0 -5
- package/http/node_modules/lodash/fp/camelCase.js +0 -5
- package/http/node_modules/lodash/fp/capitalize.js +0 -5
- package/http/node_modules/lodash/fp/castArray.js +0 -5
- package/http/node_modules/lodash/fp/ceil.js +0 -5
- package/http/node_modules/lodash/fp/chain.js +0 -5
- package/http/node_modules/lodash/fp/chunk.js +0 -5
- package/http/node_modules/lodash/fp/clamp.js +0 -5
- package/http/node_modules/lodash/fp/clone.js +0 -5
- package/http/node_modules/lodash/fp/cloneDeep.js +0 -5
- package/http/node_modules/lodash/fp/cloneDeepWith.js +0 -5
- package/http/node_modules/lodash/fp/cloneWith.js +0 -5
- package/http/node_modules/lodash/fp/collection.js +0 -2
- package/http/node_modules/lodash/fp/commit.js +0 -5
- package/http/node_modules/lodash/fp/compact.js +0 -5
- package/http/node_modules/lodash/fp/complement.js +0 -1
- package/http/node_modules/lodash/fp/compose.js +0 -1
- package/http/node_modules/lodash/fp/concat.js +0 -5
- package/http/node_modules/lodash/fp/cond.js +0 -5
- package/http/node_modules/lodash/fp/conforms.js +0 -1
- package/http/node_modules/lodash/fp/conformsTo.js +0 -5
- package/http/node_modules/lodash/fp/constant.js +0 -5
- package/http/node_modules/lodash/fp/contains.js +0 -1
- package/http/node_modules/lodash/fp/convert.js +0 -18
- package/http/node_modules/lodash/fp/countBy.js +0 -5
- package/http/node_modules/lodash/fp/create.js +0 -5
- package/http/node_modules/lodash/fp/curry.js +0 -5
- package/http/node_modules/lodash/fp/curryN.js +0 -5
- package/http/node_modules/lodash/fp/curryRight.js +0 -5
- package/http/node_modules/lodash/fp/curryRightN.js +0 -5
- package/http/node_modules/lodash/fp/date.js +0 -2
- package/http/node_modules/lodash/fp/debounce.js +0 -5
- package/http/node_modules/lodash/fp/deburr.js +0 -5
- package/http/node_modules/lodash/fp/defaultTo.js +0 -5
- package/http/node_modules/lodash/fp/defaults.js +0 -5
- package/http/node_modules/lodash/fp/defaultsAll.js +0 -5
- package/http/node_modules/lodash/fp/defaultsDeep.js +0 -5
- package/http/node_modules/lodash/fp/defaultsDeepAll.js +0 -5
- package/http/node_modules/lodash/fp/defer.js +0 -5
- package/http/node_modules/lodash/fp/delay.js +0 -5
- package/http/node_modules/lodash/fp/difference.js +0 -5
- package/http/node_modules/lodash/fp/differenceBy.js +0 -5
- package/http/node_modules/lodash/fp/differenceWith.js +0 -5
- package/http/node_modules/lodash/fp/dissoc.js +0 -1
- package/http/node_modules/lodash/fp/dissocPath.js +0 -1
- package/http/node_modules/lodash/fp/divide.js +0 -5
- package/http/node_modules/lodash/fp/drop.js +0 -5
- package/http/node_modules/lodash/fp/dropLast.js +0 -1
- package/http/node_modules/lodash/fp/dropLastWhile.js +0 -1
- package/http/node_modules/lodash/fp/dropRight.js +0 -5
- package/http/node_modules/lodash/fp/dropRightWhile.js +0 -5
- package/http/node_modules/lodash/fp/dropWhile.js +0 -5
- package/http/node_modules/lodash/fp/each.js +0 -1
- package/http/node_modules/lodash/fp/eachRight.js +0 -1
- package/http/node_modules/lodash/fp/endsWith.js +0 -5
- package/http/node_modules/lodash/fp/entries.js +0 -1
- package/http/node_modules/lodash/fp/entriesIn.js +0 -1
- package/http/node_modules/lodash/fp/eq.js +0 -5
- package/http/node_modules/lodash/fp/equals.js +0 -1
- package/http/node_modules/lodash/fp/escape.js +0 -5
- package/http/node_modules/lodash/fp/escapeRegExp.js +0 -5
- package/http/node_modules/lodash/fp/every.js +0 -5
- package/http/node_modules/lodash/fp/extend.js +0 -1
- package/http/node_modules/lodash/fp/extendAll.js +0 -1
- package/http/node_modules/lodash/fp/extendAllWith.js +0 -1
- package/http/node_modules/lodash/fp/extendWith.js +0 -1
- package/http/node_modules/lodash/fp/fill.js +0 -5
- package/http/node_modules/lodash/fp/filter.js +0 -5
- package/http/node_modules/lodash/fp/find.js +0 -5
- package/http/node_modules/lodash/fp/findFrom.js +0 -5
- package/http/node_modules/lodash/fp/findIndex.js +0 -5
- package/http/node_modules/lodash/fp/findIndexFrom.js +0 -5
- package/http/node_modules/lodash/fp/findKey.js +0 -5
- package/http/node_modules/lodash/fp/findLast.js +0 -5
- package/http/node_modules/lodash/fp/findLastFrom.js +0 -5
- package/http/node_modules/lodash/fp/findLastIndex.js +0 -5
- package/http/node_modules/lodash/fp/findLastIndexFrom.js +0 -5
- package/http/node_modules/lodash/fp/findLastKey.js +0 -5
- package/http/node_modules/lodash/fp/first.js +0 -1
- package/http/node_modules/lodash/fp/flatMap.js +0 -5
- package/http/node_modules/lodash/fp/flatMapDeep.js +0 -5
- package/http/node_modules/lodash/fp/flatMapDepth.js +0 -5
- package/http/node_modules/lodash/fp/flatten.js +0 -5
- package/http/node_modules/lodash/fp/flattenDeep.js +0 -5
- package/http/node_modules/lodash/fp/flattenDepth.js +0 -5
- package/http/node_modules/lodash/fp/flip.js +0 -5
- package/http/node_modules/lodash/fp/floor.js +0 -5
- package/http/node_modules/lodash/fp/flow.js +0 -5
- package/http/node_modules/lodash/fp/flowRight.js +0 -5
- package/http/node_modules/lodash/fp/forEach.js +0 -5
- package/http/node_modules/lodash/fp/forEachRight.js +0 -5
- package/http/node_modules/lodash/fp/forIn.js +0 -5
- package/http/node_modules/lodash/fp/forInRight.js +0 -5
- package/http/node_modules/lodash/fp/forOwn.js +0 -5
- package/http/node_modules/lodash/fp/forOwnRight.js +0 -5
- package/http/node_modules/lodash/fp/fromPairs.js +0 -5
- package/http/node_modules/lodash/fp/function.js +0 -2
- package/http/node_modules/lodash/fp/functions.js +0 -5
- package/http/node_modules/lodash/fp/functionsIn.js +0 -5
- package/http/node_modules/lodash/fp/get.js +0 -5
- package/http/node_modules/lodash/fp/getOr.js +0 -5
- package/http/node_modules/lodash/fp/groupBy.js +0 -5
- package/http/node_modules/lodash/fp/gt.js +0 -5
- package/http/node_modules/lodash/fp/gte.js +0 -5
- package/http/node_modules/lodash/fp/has.js +0 -5
- package/http/node_modules/lodash/fp/hasIn.js +0 -5
- package/http/node_modules/lodash/fp/head.js +0 -5
- package/http/node_modules/lodash/fp/identical.js +0 -1
- package/http/node_modules/lodash/fp/identity.js +0 -5
- package/http/node_modules/lodash/fp/inRange.js +0 -5
- package/http/node_modules/lodash/fp/includes.js +0 -5
- package/http/node_modules/lodash/fp/includesFrom.js +0 -5
- package/http/node_modules/lodash/fp/indexBy.js +0 -1
- package/http/node_modules/lodash/fp/indexOf.js +0 -5
- package/http/node_modules/lodash/fp/indexOfFrom.js +0 -5
- package/http/node_modules/lodash/fp/init.js +0 -1
- package/http/node_modules/lodash/fp/initial.js +0 -5
- package/http/node_modules/lodash/fp/intersection.js +0 -5
- package/http/node_modules/lodash/fp/intersectionBy.js +0 -5
- package/http/node_modules/lodash/fp/intersectionWith.js +0 -5
- package/http/node_modules/lodash/fp/invert.js +0 -5
- package/http/node_modules/lodash/fp/invertBy.js +0 -5
- package/http/node_modules/lodash/fp/invertObj.js +0 -1
- package/http/node_modules/lodash/fp/invoke.js +0 -5
- package/http/node_modules/lodash/fp/invokeArgs.js +0 -5
- package/http/node_modules/lodash/fp/invokeArgsMap.js +0 -5
- package/http/node_modules/lodash/fp/invokeMap.js +0 -5
- package/http/node_modules/lodash/fp/isArguments.js +0 -5
- package/http/node_modules/lodash/fp/isArray.js +0 -5
- package/http/node_modules/lodash/fp/isArrayBuffer.js +0 -5
- package/http/node_modules/lodash/fp/isArrayLike.js +0 -5
- package/http/node_modules/lodash/fp/isArrayLikeObject.js +0 -5
- package/http/node_modules/lodash/fp/isBoolean.js +0 -5
- package/http/node_modules/lodash/fp/isBuffer.js +0 -5
- package/http/node_modules/lodash/fp/isDate.js +0 -5
- package/http/node_modules/lodash/fp/isElement.js +0 -5
- package/http/node_modules/lodash/fp/isEmpty.js +0 -5
- package/http/node_modules/lodash/fp/isEqual.js +0 -5
- package/http/node_modules/lodash/fp/isEqualWith.js +0 -5
- package/http/node_modules/lodash/fp/isError.js +0 -5
- package/http/node_modules/lodash/fp/isFinite.js +0 -5
- package/http/node_modules/lodash/fp/isFunction.js +0 -5
- package/http/node_modules/lodash/fp/isInteger.js +0 -5
- package/http/node_modules/lodash/fp/isLength.js +0 -5
- package/http/node_modules/lodash/fp/isMap.js +0 -5
- package/http/node_modules/lodash/fp/isMatch.js +0 -5
- package/http/node_modules/lodash/fp/isMatchWith.js +0 -5
- package/http/node_modules/lodash/fp/isNaN.js +0 -5
- package/http/node_modules/lodash/fp/isNative.js +0 -5
- package/http/node_modules/lodash/fp/isNil.js +0 -5
- package/http/node_modules/lodash/fp/isNull.js +0 -5
- package/http/node_modules/lodash/fp/isNumber.js +0 -5
- package/http/node_modules/lodash/fp/isObject.js +0 -5
- package/http/node_modules/lodash/fp/isObjectLike.js +0 -5
- package/http/node_modules/lodash/fp/isPlainObject.js +0 -5
- package/http/node_modules/lodash/fp/isRegExp.js +0 -5
- package/http/node_modules/lodash/fp/isSafeInteger.js +0 -5
- package/http/node_modules/lodash/fp/isSet.js +0 -5
- package/http/node_modules/lodash/fp/isString.js +0 -5
- package/http/node_modules/lodash/fp/isSymbol.js +0 -5
- package/http/node_modules/lodash/fp/isTypedArray.js +0 -5
- package/http/node_modules/lodash/fp/isUndefined.js +0 -5
- package/http/node_modules/lodash/fp/isWeakMap.js +0 -5
- package/http/node_modules/lodash/fp/isWeakSet.js +0 -5
- package/http/node_modules/lodash/fp/iteratee.js +0 -5
- package/http/node_modules/lodash/fp/join.js +0 -5
- package/http/node_modules/lodash/fp/juxt.js +0 -1
- package/http/node_modules/lodash/fp/kebabCase.js +0 -5
- package/http/node_modules/lodash/fp/keyBy.js +0 -5
- package/http/node_modules/lodash/fp/keys.js +0 -5
- package/http/node_modules/lodash/fp/keysIn.js +0 -5
- package/http/node_modules/lodash/fp/lang.js +0 -2
- package/http/node_modules/lodash/fp/last.js +0 -5
- package/http/node_modules/lodash/fp/lastIndexOf.js +0 -5
- package/http/node_modules/lodash/fp/lastIndexOfFrom.js +0 -5
- package/http/node_modules/lodash/fp/lowerCase.js +0 -5
- package/http/node_modules/lodash/fp/lowerFirst.js +0 -5
- package/http/node_modules/lodash/fp/lt.js +0 -5
- package/http/node_modules/lodash/fp/lte.js +0 -5
- package/http/node_modules/lodash/fp/map.js +0 -5
- package/http/node_modules/lodash/fp/mapKeys.js +0 -5
- package/http/node_modules/lodash/fp/mapValues.js +0 -5
- package/http/node_modules/lodash/fp/matches.js +0 -1
- package/http/node_modules/lodash/fp/matchesProperty.js +0 -5
- package/http/node_modules/lodash/fp/math.js +0 -2
- package/http/node_modules/lodash/fp/max.js +0 -5
- package/http/node_modules/lodash/fp/maxBy.js +0 -5
- package/http/node_modules/lodash/fp/mean.js +0 -5
- package/http/node_modules/lodash/fp/meanBy.js +0 -5
- package/http/node_modules/lodash/fp/memoize.js +0 -5
- package/http/node_modules/lodash/fp/merge.js +0 -5
- package/http/node_modules/lodash/fp/mergeAll.js +0 -5
- package/http/node_modules/lodash/fp/mergeAllWith.js +0 -5
- package/http/node_modules/lodash/fp/mergeWith.js +0 -5
- package/http/node_modules/lodash/fp/method.js +0 -5
- package/http/node_modules/lodash/fp/methodOf.js +0 -5
- package/http/node_modules/lodash/fp/min.js +0 -5
- package/http/node_modules/lodash/fp/minBy.js +0 -5
- package/http/node_modules/lodash/fp/mixin.js +0 -5
- package/http/node_modules/lodash/fp/multiply.js +0 -5
- package/http/node_modules/lodash/fp/nAry.js +0 -1
- package/http/node_modules/lodash/fp/negate.js +0 -5
- package/http/node_modules/lodash/fp/next.js +0 -5
- package/http/node_modules/lodash/fp/noop.js +0 -5
- package/http/node_modules/lodash/fp/now.js +0 -5
- package/http/node_modules/lodash/fp/nth.js +0 -5
- package/http/node_modules/lodash/fp/nthArg.js +0 -5
- package/http/node_modules/lodash/fp/number.js +0 -2
- package/http/node_modules/lodash/fp/object.js +0 -2
- package/http/node_modules/lodash/fp/omit.js +0 -5
- package/http/node_modules/lodash/fp/omitAll.js +0 -1
- package/http/node_modules/lodash/fp/omitBy.js +0 -5
- package/http/node_modules/lodash/fp/once.js +0 -5
- package/http/node_modules/lodash/fp/orderBy.js +0 -5
- package/http/node_modules/lodash/fp/over.js +0 -5
- package/http/node_modules/lodash/fp/overArgs.js +0 -5
- package/http/node_modules/lodash/fp/overEvery.js +0 -5
- package/http/node_modules/lodash/fp/overSome.js +0 -5
- package/http/node_modules/lodash/fp/pad.js +0 -5
- package/http/node_modules/lodash/fp/padChars.js +0 -5
- package/http/node_modules/lodash/fp/padCharsEnd.js +0 -5
- package/http/node_modules/lodash/fp/padCharsStart.js +0 -5
- package/http/node_modules/lodash/fp/padEnd.js +0 -5
- package/http/node_modules/lodash/fp/padStart.js +0 -5
- package/http/node_modules/lodash/fp/parseInt.js +0 -5
- package/http/node_modules/lodash/fp/partial.js +0 -5
- package/http/node_modules/lodash/fp/partialRight.js +0 -5
- package/http/node_modules/lodash/fp/partition.js +0 -5
- package/http/node_modules/lodash/fp/path.js +0 -1
- package/http/node_modules/lodash/fp/pathEq.js +0 -1
- package/http/node_modules/lodash/fp/pathOr.js +0 -1
- package/http/node_modules/lodash/fp/paths.js +0 -1
- package/http/node_modules/lodash/fp/pick.js +0 -5
- package/http/node_modules/lodash/fp/pickAll.js +0 -1
- package/http/node_modules/lodash/fp/pickBy.js +0 -5
- package/http/node_modules/lodash/fp/pipe.js +0 -1
- package/http/node_modules/lodash/fp/placeholder.js +0 -6
- package/http/node_modules/lodash/fp/plant.js +0 -5
- package/http/node_modules/lodash/fp/pluck.js +0 -1
- package/http/node_modules/lodash/fp/prop.js +0 -1
- package/http/node_modules/lodash/fp/propEq.js +0 -1
- package/http/node_modules/lodash/fp/propOr.js +0 -1
- package/http/node_modules/lodash/fp/property.js +0 -1
- package/http/node_modules/lodash/fp/propertyOf.js +0 -5
- package/http/node_modules/lodash/fp/props.js +0 -1
- package/http/node_modules/lodash/fp/pull.js +0 -5
- package/http/node_modules/lodash/fp/pullAll.js +0 -5
- package/http/node_modules/lodash/fp/pullAllBy.js +0 -5
- package/http/node_modules/lodash/fp/pullAllWith.js +0 -5
- package/http/node_modules/lodash/fp/pullAt.js +0 -5
- package/http/node_modules/lodash/fp/random.js +0 -5
- package/http/node_modules/lodash/fp/range.js +0 -5
- package/http/node_modules/lodash/fp/rangeRight.js +0 -5
- package/http/node_modules/lodash/fp/rangeStep.js +0 -5
- package/http/node_modules/lodash/fp/rangeStepRight.js +0 -5
- package/http/node_modules/lodash/fp/rearg.js +0 -5
- package/http/node_modules/lodash/fp/reduce.js +0 -5
- package/http/node_modules/lodash/fp/reduceRight.js +0 -5
- package/http/node_modules/lodash/fp/reject.js +0 -5
- package/http/node_modules/lodash/fp/remove.js +0 -5
- package/http/node_modules/lodash/fp/repeat.js +0 -5
- package/http/node_modules/lodash/fp/replace.js +0 -5
- package/http/node_modules/lodash/fp/rest.js +0 -5
- package/http/node_modules/lodash/fp/restFrom.js +0 -5
- package/http/node_modules/lodash/fp/result.js +0 -5
- package/http/node_modules/lodash/fp/reverse.js +0 -5
- package/http/node_modules/lodash/fp/round.js +0 -5
- package/http/node_modules/lodash/fp/sample.js +0 -5
- package/http/node_modules/lodash/fp/sampleSize.js +0 -5
- package/http/node_modules/lodash/fp/seq.js +0 -2
- package/http/node_modules/lodash/fp/set.js +0 -5
- package/http/node_modules/lodash/fp/setWith.js +0 -5
- package/http/node_modules/lodash/fp/shuffle.js +0 -5
- package/http/node_modules/lodash/fp/size.js +0 -5
- package/http/node_modules/lodash/fp/slice.js +0 -5
- package/http/node_modules/lodash/fp/snakeCase.js +0 -5
- package/http/node_modules/lodash/fp/some.js +0 -5
- package/http/node_modules/lodash/fp/sortBy.js +0 -5
- package/http/node_modules/lodash/fp/sortedIndex.js +0 -5
- package/http/node_modules/lodash/fp/sortedIndexBy.js +0 -5
- package/http/node_modules/lodash/fp/sortedIndexOf.js +0 -5
- package/http/node_modules/lodash/fp/sortedLastIndex.js +0 -5
- package/http/node_modules/lodash/fp/sortedLastIndexBy.js +0 -5
- package/http/node_modules/lodash/fp/sortedLastIndexOf.js +0 -5
- package/http/node_modules/lodash/fp/sortedUniq.js +0 -5
- package/http/node_modules/lodash/fp/sortedUniqBy.js +0 -5
- package/http/node_modules/lodash/fp/split.js +0 -5
- package/http/node_modules/lodash/fp/spread.js +0 -5
- package/http/node_modules/lodash/fp/spreadFrom.js +0 -5
- package/http/node_modules/lodash/fp/startCase.js +0 -5
- package/http/node_modules/lodash/fp/startsWith.js +0 -5
- package/http/node_modules/lodash/fp/string.js +0 -2
- package/http/node_modules/lodash/fp/stubArray.js +0 -5
- package/http/node_modules/lodash/fp/stubFalse.js +0 -5
- package/http/node_modules/lodash/fp/stubObject.js +0 -5
- package/http/node_modules/lodash/fp/stubString.js +0 -5
- package/http/node_modules/lodash/fp/stubTrue.js +0 -5
- package/http/node_modules/lodash/fp/subtract.js +0 -5
- package/http/node_modules/lodash/fp/sum.js +0 -5
- package/http/node_modules/lodash/fp/sumBy.js +0 -5
- package/http/node_modules/lodash/fp/symmetricDifference.js +0 -1
- package/http/node_modules/lodash/fp/symmetricDifferenceBy.js +0 -1
- package/http/node_modules/lodash/fp/symmetricDifferenceWith.js +0 -1
- package/http/node_modules/lodash/fp/tail.js +0 -5
- package/http/node_modules/lodash/fp/take.js +0 -5
- package/http/node_modules/lodash/fp/takeLast.js +0 -1
- package/http/node_modules/lodash/fp/takeLastWhile.js +0 -1
- package/http/node_modules/lodash/fp/takeRight.js +0 -5
- package/http/node_modules/lodash/fp/takeRightWhile.js +0 -5
- package/http/node_modules/lodash/fp/takeWhile.js +0 -5
- package/http/node_modules/lodash/fp/tap.js +0 -5
- package/http/node_modules/lodash/fp/template.js +0 -5
- package/http/node_modules/lodash/fp/templateSettings.js +0 -5
- package/http/node_modules/lodash/fp/throttle.js +0 -5
- package/http/node_modules/lodash/fp/thru.js +0 -5
- package/http/node_modules/lodash/fp/times.js +0 -5
- package/http/node_modules/lodash/fp/toArray.js +0 -5
- package/http/node_modules/lodash/fp/toFinite.js +0 -5
- package/http/node_modules/lodash/fp/toInteger.js +0 -5
- package/http/node_modules/lodash/fp/toIterator.js +0 -5
- package/http/node_modules/lodash/fp/toJSON.js +0 -5
- package/http/node_modules/lodash/fp/toLength.js +0 -5
- package/http/node_modules/lodash/fp/toLower.js +0 -5
- package/http/node_modules/lodash/fp/toNumber.js +0 -5
- package/http/node_modules/lodash/fp/toPairs.js +0 -5
- package/http/node_modules/lodash/fp/toPairsIn.js +0 -5
- package/http/node_modules/lodash/fp/toPath.js +0 -5
- package/http/node_modules/lodash/fp/toPlainObject.js +0 -5
- package/http/node_modules/lodash/fp/toSafeInteger.js +0 -5
- package/http/node_modules/lodash/fp/toString.js +0 -5
- package/http/node_modules/lodash/fp/toUpper.js +0 -5
- package/http/node_modules/lodash/fp/transform.js +0 -5
- package/http/node_modules/lodash/fp/trim.js +0 -5
- package/http/node_modules/lodash/fp/trimChars.js +0 -5
- package/http/node_modules/lodash/fp/trimCharsEnd.js +0 -5
- package/http/node_modules/lodash/fp/trimCharsStart.js +0 -5
- package/http/node_modules/lodash/fp/trimEnd.js +0 -5
- package/http/node_modules/lodash/fp/trimStart.js +0 -5
- package/http/node_modules/lodash/fp/truncate.js +0 -5
- package/http/node_modules/lodash/fp/unapply.js +0 -1
- package/http/node_modules/lodash/fp/unary.js +0 -5
- package/http/node_modules/lodash/fp/unescape.js +0 -5
- package/http/node_modules/lodash/fp/union.js +0 -5
- package/http/node_modules/lodash/fp/unionBy.js +0 -5
- package/http/node_modules/lodash/fp/unionWith.js +0 -5
- package/http/node_modules/lodash/fp/uniq.js +0 -5
- package/http/node_modules/lodash/fp/uniqBy.js +0 -5
- package/http/node_modules/lodash/fp/uniqWith.js +0 -5
- package/http/node_modules/lodash/fp/uniqueId.js +0 -5
- package/http/node_modules/lodash/fp/unnest.js +0 -1
- package/http/node_modules/lodash/fp/unset.js +0 -5
- package/http/node_modules/lodash/fp/unzip.js +0 -5
- package/http/node_modules/lodash/fp/unzipWith.js +0 -5
- package/http/node_modules/lodash/fp/update.js +0 -5
- package/http/node_modules/lodash/fp/updateWith.js +0 -5
- package/http/node_modules/lodash/fp/upperCase.js +0 -5
- package/http/node_modules/lodash/fp/upperFirst.js +0 -5
- package/http/node_modules/lodash/fp/useWith.js +0 -1
- package/http/node_modules/lodash/fp/util.js +0 -2
- package/http/node_modules/lodash/fp/value.js +0 -5
- package/http/node_modules/lodash/fp/valueOf.js +0 -5
- package/http/node_modules/lodash/fp/values.js +0 -5
- package/http/node_modules/lodash/fp/valuesIn.js +0 -5
- package/http/node_modules/lodash/fp/where.js +0 -1
- package/http/node_modules/lodash/fp/whereEq.js +0 -1
- package/http/node_modules/lodash/fp/without.js +0 -5
- package/http/node_modules/lodash/fp/words.js +0 -5
- package/http/node_modules/lodash/fp/wrap.js +0 -5
- package/http/node_modules/lodash/fp/wrapperAt.js +0 -5
- package/http/node_modules/lodash/fp/wrapperChain.js +0 -5
- package/http/node_modules/lodash/fp/wrapperLodash.js +0 -5
- package/http/node_modules/lodash/fp/wrapperReverse.js +0 -5
- package/http/node_modules/lodash/fp/wrapperValue.js +0 -5
- package/http/node_modules/lodash/fp/xor.js +0 -5
- package/http/node_modules/lodash/fp/xorBy.js +0 -5
- package/http/node_modules/lodash/fp/xorWith.js +0 -5
- package/http/node_modules/lodash/fp/zip.js +0 -5
- package/http/node_modules/lodash/fp/zipAll.js +0 -5
- package/http/node_modules/lodash/fp/zipObj.js +0 -1
- package/http/node_modules/lodash/fp/zipObject.js +0 -5
- package/http/node_modules/lodash/fp/zipObjectDeep.js +0 -5
- package/http/node_modules/lodash/fp/zipWith.js +0 -5
- package/http/node_modules/lodash/fp.js +0 -2
- package/http/node_modules/lodash/fromPairs.js +0 -28
- package/http/node_modules/lodash/function.js +0 -25
- package/http/node_modules/lodash/functions.js +0 -31
- package/http/node_modules/lodash/functionsIn.js +0 -31
- package/http/node_modules/lodash/get.js +0 -33
- package/http/node_modules/lodash/groupBy.js +0 -41
- package/http/node_modules/lodash/gt.js +0 -29
- package/http/node_modules/lodash/gte.js +0 -30
- package/http/node_modules/lodash/has.js +0 -35
- package/http/node_modules/lodash/hasIn.js +0 -34
- package/http/node_modules/lodash/head.js +0 -23
- package/http/node_modules/lodash/identity.js +0 -21
- package/http/node_modules/lodash/inRange.js +0 -55
- package/http/node_modules/lodash/includes.js +0 -53
- package/http/node_modules/lodash/index.js +0 -1
- package/http/node_modules/lodash/indexOf.js +0 -42
- package/http/node_modules/lodash/initial.js +0 -22
- package/http/node_modules/lodash/intersection.js +0 -30
- package/http/node_modules/lodash/intersectionBy.js +0 -45
- package/http/node_modules/lodash/intersectionWith.js +0 -41
- package/http/node_modules/lodash/invert.js +0 -42
- package/http/node_modules/lodash/invertBy.js +0 -56
- package/http/node_modules/lodash/invoke.js +0 -24
- package/http/node_modules/lodash/invokeMap.js +0 -41
- package/http/node_modules/lodash/isArguments.js +0 -36
- package/http/node_modules/lodash/isArray.js +0 -26
- package/http/node_modules/lodash/isArrayBuffer.js +0 -27
- package/http/node_modules/lodash/isArrayLike.js +0 -33
- package/http/node_modules/lodash/isArrayLikeObject.js +0 -33
- package/http/node_modules/lodash/isBoolean.js +0 -29
- package/http/node_modules/lodash/isBuffer.js +0 -38
- package/http/node_modules/lodash/isDate.js +0 -27
- package/http/node_modules/lodash/isElement.js +0 -25
- package/http/node_modules/lodash/isEmpty.js +0 -77
- package/http/node_modules/lodash/isEqual.js +0 -35
- package/http/node_modules/lodash/isEqualWith.js +0 -41
- package/http/node_modules/lodash/isError.js +0 -36
- package/http/node_modules/lodash/isFinite.js +0 -36
- package/http/node_modules/lodash/isFunction.js +0 -37
- package/http/node_modules/lodash/isInteger.js +0 -33
- package/http/node_modules/lodash/isLength.js +0 -35
- package/http/node_modules/lodash/isMap.js +0 -27
- package/http/node_modules/lodash/isMatch.js +0 -36
- package/http/node_modules/lodash/isMatchWith.js +0 -41
- package/http/node_modules/lodash/isNaN.js +0 -38
- package/http/node_modules/lodash/isNative.js +0 -40
- package/http/node_modules/lodash/isNil.js +0 -25
- package/http/node_modules/lodash/isNull.js +0 -22
- package/http/node_modules/lodash/isNumber.js +0 -38
- package/http/node_modules/lodash/isObject.js +0 -31
- package/http/node_modules/lodash/isObjectLike.js +0 -29
- package/http/node_modules/lodash/isPlainObject.js +0 -62
- package/http/node_modules/lodash/isRegExp.js +0 -27
- package/http/node_modules/lodash/isSafeInteger.js +0 -37
- package/http/node_modules/lodash/isSet.js +0 -27
- package/http/node_modules/lodash/isString.js +0 -30
- package/http/node_modules/lodash/isSymbol.js +0 -29
- package/http/node_modules/lodash/isTypedArray.js +0 -27
- package/http/node_modules/lodash/isUndefined.js +0 -22
- package/http/node_modules/lodash/isWeakMap.js +0 -28
- package/http/node_modules/lodash/isWeakSet.js +0 -28
- package/http/node_modules/lodash/iteratee.js +0 -53
- package/http/node_modules/lodash/join.js +0 -26
- package/http/node_modules/lodash/kebabCase.js +0 -28
- package/http/node_modules/lodash/keyBy.js +0 -36
- package/http/node_modules/lodash/keys.js +0 -37
- package/http/node_modules/lodash/keysIn.js +0 -32
- package/http/node_modules/lodash/lang.js +0 -58
- package/http/node_modules/lodash/last.js +0 -20
- package/http/node_modules/lodash/lastIndexOf.js +0 -46
- package/http/node_modules/lodash/lodash.js +0 -17161
- package/http/node_modules/lodash/lodash.min.js +0 -139
- package/http/node_modules/lodash/lowerCase.js +0 -27
- package/http/node_modules/lodash/lowerFirst.js +0 -22
- package/http/node_modules/lodash/lt.js +0 -29
- package/http/node_modules/lodash/lte.js +0 -30
- package/http/node_modules/lodash/map.js +0 -53
- package/http/node_modules/lodash/mapKeys.js +0 -36
- package/http/node_modules/lodash/mapValues.js +0 -43
- package/http/node_modules/lodash/matches.js +0 -46
- package/http/node_modules/lodash/matchesProperty.js +0 -44
- package/http/node_modules/lodash/math.js +0 -17
- package/http/node_modules/lodash/max.js +0 -29
- package/http/node_modules/lodash/maxBy.js +0 -34
- package/http/node_modules/lodash/mean.js +0 -22
- package/http/node_modules/lodash/meanBy.js +0 -31
- package/http/node_modules/lodash/memoize.js +0 -73
- package/http/node_modules/lodash/merge.js +0 -39
- package/http/node_modules/lodash/mergeWith.js +0 -39
- package/http/node_modules/lodash/method.js +0 -34
- package/http/node_modules/lodash/methodOf.js +0 -33
- package/http/node_modules/lodash/min.js +0 -29
- package/http/node_modules/lodash/minBy.js +0 -34
- package/http/node_modules/lodash/mixin.js +0 -74
- package/http/node_modules/lodash/multiply.js +0 -22
- package/http/node_modules/lodash/negate.js +0 -40
- package/http/node_modules/lodash/next.js +0 -35
- package/http/node_modules/lodash/noop.js +0 -17
- package/http/node_modules/lodash/now.js +0 -23
- package/http/node_modules/lodash/nth.js +0 -29
- package/http/node_modules/lodash/nthArg.js +0 -32
- package/http/node_modules/lodash/number.js +0 -5
- package/http/node_modules/lodash/object.js +0 -49
- package/http/node_modules/lodash/omit.js +0 -57
- package/http/node_modules/lodash/omitBy.js +0 -29
- package/http/node_modules/lodash/once.js +0 -25
- package/http/node_modules/lodash/orderBy.js +0 -47
- package/http/node_modules/lodash/over.js +0 -24
- package/http/node_modules/lodash/overArgs.js +0 -61
- package/http/node_modules/lodash/overEvery.js +0 -34
- package/http/node_modules/lodash/overSome.js +0 -37
- package/http/node_modules/lodash/package.json +0 -67
- package/http/node_modules/lodash/pad.js +0 -49
- package/http/node_modules/lodash/padEnd.js +0 -39
- package/http/node_modules/lodash/padStart.js +0 -39
- package/http/node_modules/lodash/parseInt.js +0 -43
- package/http/node_modules/lodash/partial.js +0 -50
- package/http/node_modules/lodash/partialRight.js +0 -49
- package/http/node_modules/lodash/partition.js +0 -43
- package/http/node_modules/lodash/pick.js +0 -25
- package/http/node_modules/lodash/pickBy.js +0 -37
- package/http/node_modules/lodash/plant.js +0 -48
- package/http/node_modules/lodash/property.js +0 -32
- package/http/node_modules/lodash/propertyOf.js +0 -30
- package/http/node_modules/lodash/pull.js +0 -29
- package/http/node_modules/lodash/pullAll.js +0 -29
- package/http/node_modules/lodash/pullAllBy.js +0 -33
- package/http/node_modules/lodash/pullAllWith.js +0 -32
- package/http/node_modules/lodash/pullAt.js +0 -43
- package/http/node_modules/lodash/random.js +0 -82
- package/http/node_modules/lodash/range.js +0 -46
- package/http/node_modules/lodash/rangeRight.js +0 -41
- package/http/node_modules/lodash/rearg.js +0 -33
- package/http/node_modules/lodash/reduce.js +0 -51
- package/http/node_modules/lodash/reduceRight.js +0 -36
- package/http/node_modules/lodash/reject.js +0 -46
- package/http/node_modules/lodash/remove.js +0 -53
- package/http/node_modules/lodash/repeat.js +0 -37
- package/http/node_modules/lodash/replace.js +0 -29
- package/http/node_modules/lodash/rest.js +0 -40
- package/http/node_modules/lodash/result.js +0 -56
- package/http/node_modules/lodash/reverse.js +0 -34
- package/http/node_modules/lodash/round.js +0 -26
- package/http/node_modules/lodash/sample.js +0 -24
- package/http/node_modules/lodash/sampleSize.js +0 -37
- package/http/node_modules/lodash/seq.js +0 -16
- package/http/node_modules/lodash/set.js +0 -35
- package/http/node_modules/lodash/setWith.js +0 -32
- package/http/node_modules/lodash/shuffle.js +0 -25
- package/http/node_modules/lodash/size.js +0 -46
- package/http/node_modules/lodash/slice.js +0 -37
- package/http/node_modules/lodash/snakeCase.js +0 -28
- package/http/node_modules/lodash/some.js +0 -51
- package/http/node_modules/lodash/sortBy.js +0 -48
- package/http/node_modules/lodash/sortedIndex.js +0 -24
- package/http/node_modules/lodash/sortedIndexBy.js +0 -33
- package/http/node_modules/lodash/sortedIndexOf.js +0 -31
- package/http/node_modules/lodash/sortedLastIndex.js +0 -25
- package/http/node_modules/lodash/sortedLastIndexBy.js +0 -33
- package/http/node_modules/lodash/sortedLastIndexOf.js +0 -31
- package/http/node_modules/lodash/sortedUniq.js +0 -24
- package/http/node_modules/lodash/sortedUniqBy.js +0 -26
- package/http/node_modules/lodash/split.js +0 -52
- package/http/node_modules/lodash/spread.js +0 -63
- package/http/node_modules/lodash/startCase.js +0 -29
- package/http/node_modules/lodash/startsWith.js +0 -39
- package/http/node_modules/lodash/string.js +0 -33
- package/http/node_modules/lodash/stubArray.js +0 -23
- package/http/node_modules/lodash/stubFalse.js +0 -18
- package/http/node_modules/lodash/stubObject.js +0 -23
- package/http/node_modules/lodash/stubString.js +0 -18
- package/http/node_modules/lodash/stubTrue.js +0 -18
- package/http/node_modules/lodash/subtract.js +0 -22
- package/http/node_modules/lodash/sum.js +0 -24
- package/http/node_modules/lodash/sumBy.js +0 -33
- package/http/node_modules/lodash/tail.js +0 -22
- package/http/node_modules/lodash/take.js +0 -37
- package/http/node_modules/lodash/takeRight.js +0 -39
- package/http/node_modules/lodash/takeRightWhile.js +0 -45
- package/http/node_modules/lodash/takeWhile.js +0 -45
- package/http/node_modules/lodash/tap.js +0 -29
- package/http/node_modules/lodash/template.js +0 -251
- package/http/node_modules/lodash/templateSettings.js +0 -67
- package/http/node_modules/lodash/throttle.js +0 -69
- package/http/node_modules/lodash/thru.js +0 -28
- package/http/node_modules/lodash/times.js +0 -51
- package/http/node_modules/lodash/toArray.js +0 -58
- package/http/node_modules/lodash/toFinite.js +0 -42
- package/http/node_modules/lodash/toInteger.js +0 -36
- package/http/node_modules/lodash/toIterator.js +0 -23
- package/http/node_modules/lodash/toJSON.js +0 -1
- package/http/node_modules/lodash/toLength.js +0 -38
- package/http/node_modules/lodash/toLower.js +0 -28
- package/http/node_modules/lodash/toNumber.js +0 -66
- package/http/node_modules/lodash/toPairs.js +0 -30
- package/http/node_modules/lodash/toPairsIn.js +0 -30
- package/http/node_modules/lodash/toPath.js +0 -33
- package/http/node_modules/lodash/toPlainObject.js +0 -32
- package/http/node_modules/lodash/toSafeInteger.js +0 -37
- package/http/node_modules/lodash/toString.js +0 -28
- package/http/node_modules/lodash/toUpper.js +0 -28
- package/http/node_modules/lodash/transform.js +0 -65
- package/http/node_modules/lodash/trim.js +0 -49
- package/http/node_modules/lodash/trimEnd.js +0 -43
- package/http/node_modules/lodash/trimStart.js +0 -43
- package/http/node_modules/lodash/truncate.js +0 -111
- package/http/node_modules/lodash/unary.js +0 -22
- package/http/node_modules/lodash/unescape.js +0 -34
- package/http/node_modules/lodash/union.js +0 -26
- package/http/node_modules/lodash/unionBy.js +0 -39
- package/http/node_modules/lodash/unionWith.js +0 -34
- package/http/node_modules/lodash/uniq.js +0 -25
- package/http/node_modules/lodash/uniqBy.js +0 -31
- package/http/node_modules/lodash/uniqWith.js +0 -28
- package/http/node_modules/lodash/uniqueId.js +0 -28
- package/http/node_modules/lodash/unset.js +0 -34
- package/http/node_modules/lodash/unzip.js +0 -45
- package/http/node_modules/lodash/unzipWith.js +0 -39
- package/http/node_modules/lodash/update.js +0 -35
- package/http/node_modules/lodash/updateWith.js +0 -33
- package/http/node_modules/lodash/upperCase.js +0 -27
- package/http/node_modules/lodash/upperFirst.js +0 -22
- package/http/node_modules/lodash/util.js +0 -34
- package/http/node_modules/lodash/value.js +0 -1
- package/http/node_modules/lodash/valueOf.js +0 -1
- package/http/node_modules/lodash/values.js +0 -34
- package/http/node_modules/lodash/valuesIn.js +0 -32
- package/http/node_modules/lodash/without.js +0 -31
- package/http/node_modules/lodash/words.js +0 -35
- package/http/node_modules/lodash/wrap.js +0 -30
- package/http/node_modules/lodash/wrapperAt.js +0 -48
- package/http/node_modules/lodash/wrapperChain.js +0 -34
- package/http/node_modules/lodash/wrapperLodash.js +0 -147
- package/http/node_modules/lodash/wrapperReverse.js +0 -44
- package/http/node_modules/lodash/wrapperValue.js +0 -21
- package/http/node_modules/lodash/xor.js +0 -28
- package/http/node_modules/lodash/xorBy.js +0 -39
- package/http/node_modules/lodash/xorWith.js +0 -34
- package/http/node_modules/lodash/zip.js +0 -22
- package/http/node_modules/lodash/zipObject.js +0 -24
- package/http/node_modules/lodash/zipObjectDeep.js +0 -23
- package/http/node_modules/lodash/zipWith.js +0 -32
- package/http/node_modules/make-iterator/LICENSE +0 -21
- package/http/node_modules/make-iterator/README.md +0 -102
- package/http/node_modules/make-iterator/index.js +0 -99
- package/http/node_modules/make-iterator/package.json +0 -99
- package/http/node_modules/map-cache/LICENSE +0 -21
- package/http/node_modules/map-cache/README.md +0 -145
- package/http/node_modules/map-cache/index.js +0 -100
- package/http/node_modules/map-cache/package.json +0 -92
- package/http/node_modules/map-visit/LICENSE +0 -21
- package/http/node_modules/map-visit/README.md +0 -155
- package/http/node_modules/map-visit/index.js +0 -37
- package/http/node_modules/map-visit/package.json +0 -113
- package/http/node_modules/media-typer/HISTORY.md +0 -22
- package/http/node_modules/media-typer/LICENSE +0 -22
- package/http/node_modules/media-typer/README.md +0 -81
- package/http/node_modules/media-typer/index.js +0 -270
- package/http/node_modules/media-typer/package.json +0 -61
- package/http/node_modules/merge-descriptors/HISTORY.md +0 -21
- package/http/node_modules/merge-descriptors/LICENSE +0 -23
- package/http/node_modules/merge-descriptors/README.md +0 -48
- package/http/node_modules/merge-descriptors/index.js +0 -60
- package/http/node_modules/merge-descriptors/package.json +0 -69
- package/http/node_modules/methods/HISTORY.md +0 -29
- package/http/node_modules/methods/LICENSE +0 -24
- package/http/node_modules/methods/README.md +0 -51
- package/http/node_modules/methods/index.js +0 -69
- package/http/node_modules/methods/package.json +0 -79
- package/http/node_modules/micromatch/CHANGELOG.md +0 -37
- package/http/node_modules/micromatch/LICENSE +0 -21
- package/http/node_modules/micromatch/README.md +0 -1150
- package/http/node_modules/micromatch/index.js +0 -877
- package/http/node_modules/micromatch/lib/.DS_Store +0 -0
- package/http/node_modules/micromatch/lib/cache.js +0 -1
- package/http/node_modules/micromatch/lib/compilers.js +0 -77
- package/http/node_modules/micromatch/lib/parsers.js +0 -83
- package/http/node_modules/micromatch/lib/utils.js +0 -309
- package/http/node_modules/micromatch/package.json +0 -216
- package/http/node_modules/mime/CHANGELOG.md +0 -164
- package/http/node_modules/mime/LICENSE +0 -21
- package/http/node_modules/mime/README.md +0 -90
- package/http/node_modules/mime/cli.js +0 -8
- package/http/node_modules/mime/mime.js +0 -108
- package/http/node_modules/mime/package.json +0 -73
- package/http/node_modules/mime/src/build.js +0 -53
- package/http/node_modules/mime/src/test.js +0 -60
- package/http/node_modules/mime/types.json +0 -1
- package/http/node_modules/mime-db/HISTORY.md +0 -458
- package/http/node_modules/mime-db/LICENSE +0 -22
- package/http/node_modules/mime-db/README.md +0 -102
- package/http/node_modules/mime-db/db.json +0 -8242
- package/http/node_modules/mime-db/index.js +0 -11
- package/http/node_modules/mime-db/package.json +0 -102
- package/http/node_modules/mime-types/HISTORY.md +0 -346
- package/http/node_modules/mime-types/LICENSE +0 -23
- package/http/node_modules/mime-types/README.md +0 -123
- package/http/node_modules/mime-types/index.js +0 -188
- package/http/node_modules/mime-types/package.json +0 -88
- package/http/node_modules/minimatch/LICENSE +0 -15
- package/http/node_modules/minimatch/README.md +0 -209
- package/http/node_modules/minimatch/minimatch.js +0 -923
- package/http/node_modules/minimatch/package.json +0 -65
- package/http/node_modules/mixin-deep/LICENSE +0 -21
- package/http/node_modules/mixin-deep/README.md +0 -80
- package/http/node_modules/mixin-deep/index.js +0 -64
- package/http/node_modules/mixin-deep/package.json +0 -98
- package/http/node_modules/mkdirp/CHANGELOG.md +0 -15
- package/http/node_modules/mkdirp/LICENSE +0 -21
- package/http/node_modules/mkdirp/bin/cmd.js +0 -68
- package/http/node_modules/mkdirp/index.js +0 -31
- package/http/node_modules/mkdirp/lib/find-made.js +0 -29
- package/http/node_modules/mkdirp/lib/mkdirp-manual.js +0 -64
- package/http/node_modules/mkdirp/lib/mkdirp-native.js +0 -39
- package/http/node_modules/mkdirp/lib/opts-arg.js +0 -23
- package/http/node_modules/mkdirp/lib/path-arg.js +0 -29
- package/http/node_modules/mkdirp/lib/use-native.js +0 -10
- package/http/node_modules/mkdirp/package.json +0 -75
- package/http/node_modules/mkdirp/readme.markdown +0 -266
- package/http/node_modules/ms/index.js +0 -152
- package/http/node_modules/ms/license.md +0 -21
- package/http/node_modules/ms/package.json +0 -69
- package/http/node_modules/ms/readme.md +0 -51
- package/http/node_modules/nanomatch/CHANGELOG.md +0 -57
- package/http/node_modules/nanomatch/LICENSE +0 -21
- package/http/node_modules/nanomatch/README.md +0 -1148
- package/http/node_modules/nanomatch/index.js +0 -838
- package/http/node_modules/nanomatch/lib/cache.js +0 -1
- package/http/node_modules/nanomatch/lib/compilers.js +0 -339
- package/http/node_modules/nanomatch/lib/parsers.js +0 -386
- package/http/node_modules/nanomatch/lib/utils.js +0 -379
- package/http/node_modules/nanomatch/package.json +0 -171
- package/http/node_modules/negotiator/HISTORY.md +0 -103
- package/http/node_modules/negotiator/LICENSE +0 -24
- package/http/node_modules/negotiator/README.md +0 -203
- package/http/node_modules/negotiator/index.js +0 -124
- package/http/node_modules/negotiator/lib/charset.js +0 -169
- package/http/node_modules/negotiator/lib/encoding.js +0 -184
- package/http/node_modules/negotiator/lib/language.js +0 -179
- package/http/node_modules/negotiator/lib/mediaType.js +0 -294
- package/http/node_modules/negotiator/package.json +0 -84
- package/http/node_modules/nopt/.travis.yml +0 -9
- package/http/node_modules/nopt/LICENSE +0 -15
- package/http/node_modules/nopt/README.md +0 -211
- package/http/node_modules/nopt/bin/nopt.js +0 -54
- package/http/node_modules/nopt/examples/my-program.js +0 -30
- package/http/node_modules/nopt/lib/nopt.js +0 -415
- package/http/node_modules/nopt/package.json +0 -57
- package/http/node_modules/nopt/test/basic.js +0 -273
- package/http/node_modules/object-copy/LICENSE +0 -21
- package/http/node_modules/object-copy/index.js +0 -174
- package/http/node_modules/object-copy/package.json +0 -81
- package/http/node_modules/object-visit/LICENSE +0 -21
- package/http/node_modules/object-visit/README.md +0 -83
- package/http/node_modules/object-visit/index.js +0 -33
- package/http/node_modules/object-visit/package.json +0 -97
- package/http/node_modules/object.defaults/LICENSE +0 -21
- package/http/node_modules/object.defaults/README.md +0 -85
- package/http/node_modules/object.defaults/immutable.js +0 -20
- package/http/node_modules/object.defaults/index.js +0 -11
- package/http/node_modules/object.defaults/mutable.js +0 -35
- package/http/node_modules/object.defaults/package.json +0 -106
- package/http/node_modules/object.map/LICENSE +0 -24
- package/http/node_modules/object.map/README.md +0 -87
- package/http/node_modules/object.map/index.js +0 -22
- package/http/node_modules/object.map/package.json +0 -99
- package/http/node_modules/object.pick/LICENSE +0 -21
- package/http/node_modules/object.pick/README.md +0 -76
- package/http/node_modules/object.pick/index.js +0 -35
- package/http/node_modules/object.pick/package.json +0 -93
- package/http/node_modules/on-finished/HISTORY.md +0 -88
- package/http/node_modules/on-finished/LICENSE +0 -23
- package/http/node_modules/on-finished/README.md +0 -154
- package/http/node_modules/on-finished/index.js +0 -196
- package/http/node_modules/on-finished/package.json +0 -73
- package/http/node_modules/on-headers/HISTORY.md +0 -21
- package/http/node_modules/on-headers/LICENSE +0 -22
- package/http/node_modules/on-headers/README.md +0 -81
- package/http/node_modules/on-headers/index.js +0 -132
- package/http/node_modules/on-headers/package.json +0 -77
- package/http/node_modules/once/LICENSE +0 -15
- package/http/node_modules/once/README.md +0 -79
- package/http/node_modules/once/once.js +0 -42
- package/http/node_modules/once/package.json +0 -68
- package/http/node_modules/os-homedir/index.js +0 -24
- package/http/node_modules/os-homedir/license +0 -21
- package/http/node_modules/os-homedir/package.json +0 -73
- package/http/node_modules/os-homedir/readme.md +0 -31
- package/http/node_modules/os-tmpdir/index.js +0 -25
- package/http/node_modules/os-tmpdir/license +0 -21
- package/http/node_modules/os-tmpdir/package.json +0 -73
- package/http/node_modules/os-tmpdir/readme.md +0 -32
- package/http/node_modules/osenv/LICENSE +0 -15
- package/http/node_modules/osenv/README.md +0 -63
- package/http/node_modules/osenv/osenv.js +0 -72
- package/http/node_modules/osenv/package.json +0 -73
- package/http/node_modules/parse-filepath/LICENSE +0 -21
- package/http/node_modules/parse-filepath/README.md +0 -111
- package/http/node_modules/parse-filepath/index.js +0 -95
- package/http/node_modules/parse-filepath/package.json +0 -110
- package/http/node_modules/parse-passwd/LICENSE +0 -21
- package/http/node_modules/parse-passwd/README.md +0 -86
- package/http/node_modules/parse-passwd/index.js +0 -56
- package/http/node_modules/parse-passwd/package.json +0 -86
- package/http/node_modules/parseurl/HISTORY.md +0 -58
- package/http/node_modules/parseurl/LICENSE +0 -24
- package/http/node_modules/parseurl/README.md +0 -133
- package/http/node_modules/parseurl/index.js +0 -158
- package/http/node_modules/parseurl/package.json +0 -82
- package/http/node_modules/pascalcase/LICENSE +0 -21
- package/http/node_modules/pascalcase/README.md +0 -80
- package/http/node_modules/pascalcase/index.js +0 -21
- package/http/node_modules/pascalcase/package.json +0 -77
- package/http/node_modules/path-is-absolute/index.js +0 -20
- package/http/node_modules/path-is-absolute/license +0 -21
- package/http/node_modules/path-is-absolute/package.json +0 -76
- package/http/node_modules/path-is-absolute/readme.md +0 -59
- package/http/node_modules/path-parse/.travis.yml +0 -9
- package/http/node_modules/path-parse/LICENSE +0 -21
- package/http/node_modules/path-parse/README.md +0 -42
- package/http/node_modules/path-parse/index.js +0 -93
- package/http/node_modules/path-parse/package.json +0 -61
- package/http/node_modules/path-parse/test.js +0 -77
- package/http/node_modules/path-root/LICENSE +0 -21
- package/http/node_modules/path-root/README.md +0 -94
- package/http/node_modules/path-root/index.js +0 -21
- package/http/node_modules/path-root/package.json +0 -89
- package/http/node_modules/path-root-regex/LICENSE +0 -21
- package/http/node_modules/path-root-regex/README.md +0 -53
- package/http/node_modules/path-root-regex/index.js +0 -13
- package/http/node_modules/path-root-regex/package.json +0 -96
- package/http/node_modules/path-to-regexp/History.md +0 -36
- package/http/node_modules/path-to-regexp/LICENSE +0 -21
- package/http/node_modules/path-to-regexp/Readme.md +0 -35
- package/http/node_modules/path-to-regexp/index.js +0 -129
- package/http/node_modules/path-to-regexp/package.json +0 -59
- package/http/node_modules/posix-character-classes/LICENSE +0 -21
- package/http/node_modules/posix-character-classes/README.md +0 -103
- package/http/node_modules/posix-character-classes/index.js +0 -22
- package/http/node_modules/posix-character-classes/package.json +0 -85
- package/http/node_modules/proxy-addr/HISTORY.md +0 -155
- package/http/node_modules/proxy-addr/LICENSE +0 -22
- package/http/node_modules/proxy-addr/README.md +0 -155
- package/http/node_modules/proxy-addr/index.js +0 -327
- package/http/node_modules/proxy-addr/package.json +0 -82
- package/http/node_modules/qs/.eslintignore +0 -1
- package/http/node_modules/qs/.eslintrc +0 -21
- package/http/node_modules/qs/CHANGELOG.md +0 -256
- package/http/node_modules/qs/LICENSE +0 -28
- package/http/node_modules/qs/README.md +0 -570
- package/http/node_modules/qs/dist/qs.js +0 -782
- package/http/node_modules/qs/lib/formats.js +0 -18
- package/http/node_modules/qs/lib/index.js +0 -11
- package/http/node_modules/qs/lib/parse.js +0 -242
- package/http/node_modules/qs/lib/stringify.js +0 -269
- package/http/node_modules/qs/lib/utils.js +0 -230
- package/http/node_modules/qs/package.json +0 -87
- package/http/node_modules/qs/test/.eslintrc +0 -17
- package/http/node_modules/qs/test/index.js +0 -7
- package/http/node_modules/qs/test/parse.js +0 -676
- package/http/node_modules/qs/test/stringify.js +0 -679
- package/http/node_modules/qs/test/utils.js +0 -136
- package/http/node_modules/random-bytes/HISTORY.md +0 -4
- package/http/node_modules/random-bytes/LICENSE +0 -21
- package/http/node_modules/random-bytes/README.md +0 -77
- package/http/node_modules/random-bytes/index.js +0 -101
- package/http/node_modules/random-bytes/package.json +0 -71
- package/http/node_modules/range-parser/HISTORY.md +0 -56
- package/http/node_modules/range-parser/LICENSE +0 -23
- package/http/node_modules/range-parser/README.md +0 -84
- package/http/node_modules/range-parser/index.js +0 -162
- package/http/node_modules/range-parser/package.json +0 -91
- package/http/node_modules/raw-body/HISTORY.md +0 -270
- package/http/node_modules/raw-body/LICENSE +0 -22
- package/http/node_modules/raw-body/README.md +0 -219
- package/http/node_modules/raw-body/index.d.ts +0 -87
- package/http/node_modules/raw-body/index.js +0 -286
- package/http/node_modules/raw-body/package.json +0 -90
- package/http/node_modules/rechoir/.travis.yml +0 -24
- package/http/node_modules/rechoir/CHANGELOG +0 -38
- package/http/node_modules/rechoir/LICENSE +0 -22
- package/http/node_modules/rechoir/README.md +0 -42
- package/http/node_modules/rechoir/index.js +0 -59
- package/http/node_modules/rechoir/lib/extension.js +0 -11
- package/http/node_modules/rechoir/lib/normalize.js +0 -15
- package/http/node_modules/rechoir/lib/register.js +0 -15
- package/http/node_modules/rechoir/package.json +0 -113
- package/http/node_modules/regex-not/LICENSE +0 -21
- package/http/node_modules/regex-not/README.md +0 -133
- package/http/node_modules/regex-not/index.js +0 -72
- package/http/node_modules/regex-not/package.json +0 -98
- package/http/node_modules/repeat-element/LICENSE +0 -21
- package/http/node_modules/repeat-element/README.md +0 -99
- package/http/node_modules/repeat-element/index.js +0 -18
- package/http/node_modules/repeat-element/package.json +0 -80
- package/http/node_modules/repeat-string/LICENSE +0 -21
- package/http/node_modules/repeat-string/README.md +0 -136
- package/http/node_modules/repeat-string/index.js +0 -70
- package/http/node_modules/repeat-string/package.json +0 -129
- package/http/node_modules/resolve/.eslintignore +0 -1
- package/http/node_modules/resolve/.eslintrc +0 -39
- package/http/node_modules/resolve/LICENSE +0 -21
- package/http/node_modules/resolve/appveyor.yml +0 -74
- package/http/node_modules/resolve/example/async.js +0 -5
- package/http/node_modules/resolve/example/sync.js +0 -3
- package/http/node_modules/resolve/index.js +0 -6
- package/http/node_modules/resolve/lib/async.js +0 -299
- package/http/node_modules/resolve/lib/caller.js +0 -8
- package/http/node_modules/resolve/lib/core.js +0 -53
- package/http/node_modules/resolve/lib/core.json +0 -80
- package/http/node_modules/resolve/lib/is-core.js +0 -5
- package/http/node_modules/resolve/lib/node-modules-paths.js +0 -42
- package/http/node_modules/resolve/lib/normalize-options.js +0 -10
- package/http/node_modules/resolve/lib/sync.js +0 -192
- package/http/node_modules/resolve/package.json +0 -81
- package/http/node_modules/resolve/readme.markdown +0 -250
- package/http/node_modules/resolve/test/.eslintrc +0 -5
- package/http/node_modules/resolve/test/core.js +0 -81
- package/http/node_modules/resolve/test/dotdot/abc/index.js +0 -2
- package/http/node_modules/resolve/test/dotdot/index.js +0 -1
- package/http/node_modules/resolve/test/dotdot.js +0 -29
- package/http/node_modules/resolve/test/faulty_basedir.js +0 -29
- package/http/node_modules/resolve/test/filter.js +0 -34
- package/http/node_modules/resolve/test/filter_sync.js +0 -33
- package/http/node_modules/resolve/test/mock.js +0 -239
- package/http/node_modules/resolve/test/mock_sync.js +0 -141
- package/http/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +0 -1
- package/http/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +0 -1
- package/http/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +0 -1
- package/http/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +0 -3
- package/http/node_modules/resolve/test/module_dir.js +0 -56
- package/http/node_modules/resolve/test/node-modules-paths.js +0 -143
- package/http/node_modules/resolve/test/node_path/x/aaa/index.js +0 -1
- package/http/node_modules/resolve/test/node_path/x/ccc/index.js +0 -1
- package/http/node_modules/resolve/test/node_path/y/bbb/index.js +0 -1
- package/http/node_modules/resolve/test/node_path/y/ccc/index.js +0 -1
- package/http/node_modules/resolve/test/node_path.js +0 -70
- package/http/node_modules/resolve/test/nonstring.js +0 -9
- package/http/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
- package/http/node_modules/resolve/test/pathfilter.js +0 -75
- package/http/node_modules/resolve/test/precedence/aaa/index.js +0 -1
- package/http/node_modules/resolve/test/precedence/aaa/main.js +0 -1
- package/http/node_modules/resolve/test/precedence/aaa.js +0 -1
- package/http/node_modules/resolve/test/precedence/bbb/main.js +0 -1
- package/http/node_modules/resolve/test/precedence/bbb.js +0 -1
- package/http/node_modules/resolve/test/precedence.js +0 -23
- package/http/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- package/http/node_modules/resolve/test/resolver/baz/package.json +0 -4
- package/http/node_modules/resolve/test/resolver/baz/quux.js +0 -1
- package/http/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
- package/http/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
- package/http/node_modules/resolve/test/resolver/browser_field/package.json +0 -5
- package/http/node_modules/resolve/test/resolver/cup.coffee +0 -1
- package/http/node_modules/resolve/test/resolver/dot_main/index.js +0 -1
- package/http/node_modules/resolve/test/resolver/dot_main/package.json +0 -3
- package/http/node_modules/resolve/test/resolver/dot_slash_main/index.js +0 -1
- package/http/node_modules/resolve/test/resolver/dot_slash_main/package.json +0 -3
- package/http/node_modules/resolve/test/resolver/foo.js +0 -1
- package/http/node_modules/resolve/test/resolver/incorrect_main/index.js +0 -2
- package/http/node_modules/resolve/test/resolver/incorrect_main/package.json +0 -3
- package/http/node_modules/resolve/test/resolver/invalid_main/package.json +0 -7
- package/http/node_modules/resolve/test/resolver/mug.coffee +0 -0
- package/http/node_modules/resolve/test/resolver/mug.js +0 -0
- package/http/node_modules/resolve/test/resolver/multirepo/lerna.json +0 -6
- package/http/node_modules/resolve/test/resolver/multirepo/package.json +0 -20
- package/http/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +0 -35
- package/http/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +0 -14
- package/http/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
- package/http/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +0 -14
- package/http/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +0 -26
- package/http/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +0 -15
- package/http/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +0 -12
- package/http/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- package/http/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- package/http/node_modules/resolve/test/resolver/quux/foo/index.js +0 -1
- package/http/node_modules/resolve/test/resolver/same_names/foo/index.js +0 -1
- package/http/node_modules/resolve/test/resolver/same_names/foo.js +0 -1
- package/http/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/http/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
- package/http/node_modules/resolve/test/resolver/symlinked/package/bar.js +0 -1
- package/http/node_modules/resolve/test/resolver/symlinked/package/package.json +0 -3
- package/http/node_modules/resolve/test/resolver/without_basedir/main.js +0 -5
- package/http/node_modules/resolve/test/resolver.js +0 -450
- package/http/node_modules/resolve/test/resolver_sync.js +0 -358
- package/http/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
- package/http/node_modules/resolve/test/shadowed_core.js +0 -54
- package/http/node_modules/resolve/test/subdirs.js +0 -13
- package/http/node_modules/resolve/test/symlinks.js +0 -176
- package/http/node_modules/resolve-dir/LICENSE +0 -21
- package/http/node_modules/resolve-dir/README.md +0 -88
- package/http/node_modules/resolve-dir/index.js +0 -22
- package/http/node_modules/resolve-dir/package.json +0 -105
- package/http/node_modules/resolve-url/.jshintrc +0 -44
- package/http/node_modules/resolve-url/LICENSE +0 -21
- package/http/node_modules/resolve-url/bower.json +0 -15
- package/http/node_modules/resolve-url/changelog.md +0 -15
- package/http/node_modules/resolve-url/component.json +0 -15
- package/http/node_modules/resolve-url/package.json +0 -68
- package/http/node_modules/resolve-url/readme.md +0 -83
- package/http/node_modules/resolve-url/resolve-url.js +0 -47
- package/http/node_modules/resolve-url/test/resolve-url.js +0 -70
- package/http/node_modules/ret/LICENSE +0 -19
- package/http/node_modules/ret/README.md +0 -183
- package/http/node_modules/ret/lib/index.js +0 -282
- package/http/node_modules/ret/lib/positions.js +0 -17
- package/http/node_modules/ret/lib/sets.js +0 -82
- package/http/node_modules/ret/lib/types.js +0 -10
- package/http/node_modules/ret/lib/util.js +0 -111
- package/http/node_modules/ret/package.json +0 -67
- package/http/node_modules/rimraf/CHANGELOG.md +0 -65
- package/http/node_modules/rimraf/LICENSE +0 -15
- package/http/node_modules/rimraf/README.md +0 -101
- package/http/node_modules/rimraf/bin.js +0 -68
- package/http/node_modules/rimraf/package.json +0 -70
- package/http/node_modules/rimraf/rimraf.js +0 -360
- package/http/node_modules/safe-buffer/LICENSE +0 -21
- package/http/node_modules/safe-buffer/README.md +0 -584
- package/http/node_modules/safe-buffer/index.d.ts +0 -187
- package/http/node_modules/safe-buffer/index.js +0 -62
- package/http/node_modules/safe-buffer/package.json +0 -63
- package/http/node_modules/safe-regex/.travis.yml +0 -4
- package/http/node_modules/safe-regex/LICENSE +0 -18
- package/http/node_modules/safe-regex/example/safe.js +0 -3
- package/http/node_modules/safe-regex/index.js +0 -43
- package/http/node_modules/safe-regex/package.json +0 -74
- package/http/node_modules/safe-regex/readme.markdown +0 -65
- package/http/node_modules/safe-regex/test/regex.js +0 -50
- package/http/node_modules/safer-buffer/LICENSE +0 -21
- package/http/node_modules/safer-buffer/Porting-Buffer.md +0 -268
- package/http/node_modules/safer-buffer/Readme.md +0 -156
- package/http/node_modules/safer-buffer/dangerous.js +0 -58
- package/http/node_modules/safer-buffer/package.json +0 -60
- package/http/node_modules/safer-buffer/safer.js +0 -77
- package/http/node_modules/safer-buffer/tests.js +0 -406
- package/http/node_modules/send/HISTORY.md +0 -496
- package/http/node_modules/send/LICENSE +0 -23
- package/http/node_modules/send/README.md +0 -329
- package/http/node_modules/send/index.js +0 -1129
- package/http/node_modules/send/package.json +0 -106
- package/http/node_modules/serve-static/HISTORY.md +0 -451
- package/http/node_modules/serve-static/LICENSE +0 -25
- package/http/node_modules/serve-static/README.md +0 -259
- package/http/node_modules/serve-static/index.js +0 -210
- package/http/node_modules/serve-static/package.json +0 -77
- package/http/node_modules/set-value/LICENSE +0 -21
- package/http/node_modules/set-value/README.md +0 -150
- package/http/node_modules/set-value/index.js +0 -55
- package/http/node_modules/set-value/package.json +0 -121
- package/http/node_modules/setprototypeof/LICENSE +0 -13
- package/http/node_modules/setprototypeof/README.md +0 -31
- package/http/node_modules/setprototypeof/index.d.ts +0 -2
- package/http/node_modules/setprototypeof/index.js +0 -17
- package/http/node_modules/setprototypeof/package.json +0 -64
- package/http/node_modules/setprototypeof/test/index.js +0 -24
- package/http/node_modules/snapdragon/LICENSE +0 -21
- package/http/node_modules/snapdragon/README.md +0 -321
- package/http/node_modules/snapdragon/index.js +0 -174
- package/http/node_modules/snapdragon/lib/compiler.js +0 -177
- package/http/node_modules/snapdragon/lib/parser.js +0 -533
- package/http/node_modules/snapdragon/lib/position.js +0 -14
- package/http/node_modules/snapdragon/lib/source-maps.js +0 -145
- package/http/node_modules/snapdragon/lib/utils.js +0 -48
- package/http/node_modules/snapdragon/package.json +0 -126
- package/http/node_modules/snapdragon-node/LICENSE +0 -21
- package/http/node_modules/snapdragon-node/README.md +0 -453
- package/http/node_modules/snapdragon-node/index.js +0 -492
- package/http/node_modules/snapdragon-node/package.json +0 -109
- package/http/node_modules/snapdragon-util/LICENSE +0 -21
- package/http/node_modules/snapdragon-util/README.md +0 -807
- package/http/node_modules/snapdragon-util/index.js +0 -1019
- package/http/node_modules/snapdragon-util/package.json +0 -98
- package/http/node_modules/source-map/CHANGELOG.md +0 -301
- package/http/node_modules/source-map/LICENSE +0 -28
- package/http/node_modules/source-map/README.md +0 -729
- package/http/node_modules/source-map/dist/source-map.debug.js +0 -3091
- package/http/node_modules/source-map/dist/source-map.js +0 -3090
- package/http/node_modules/source-map/dist/source-map.min.js +0 -2
- package/http/node_modules/source-map/dist/source-map.min.js.map +0 -1
- package/http/node_modules/source-map/lib/array-set.js +0 -121
- package/http/node_modules/source-map/lib/base64-vlq.js +0 -140
- package/http/node_modules/source-map/lib/base64.js +0 -67
- package/http/node_modules/source-map/lib/binary-search.js +0 -111
- package/http/node_modules/source-map/lib/mapping-list.js +0 -79
- package/http/node_modules/source-map/lib/quick-sort.js +0 -114
- package/http/node_modules/source-map/lib/source-map-consumer.js +0 -1082
- package/http/node_modules/source-map/lib/source-map-generator.js +0 -416
- package/http/node_modules/source-map/lib/source-node.js +0 -413
- package/http/node_modules/source-map/lib/util.js +0 -417
- package/http/node_modules/source-map/package.json +0 -211
- package/http/node_modules/source-map/source-map.js +0 -8
- package/http/node_modules/source-map-resolve/LICENSE +0 -22
- package/http/node_modules/source-map-resolve/changelog.md +0 -108
- package/http/node_modules/source-map-resolve/lib/decode-uri-component.js +0 -8
- package/http/node_modules/source-map-resolve/lib/resolve-url.js +0 -9
- package/http/node_modules/source-map-resolve/lib/source-map-resolve-node.js +0 -342
- package/http/node_modules/source-map-resolve/package.json +0 -81
- package/http/node_modules/source-map-resolve/readme.md +0 -231
- package/http/node_modules/source-map-resolve/source-map-resolve.js +0 -348
- package/http/node_modules/source-map-url/.jshintrc +0 -43
- package/http/node_modules/source-map-url/LICENSE +0 -21
- package/http/node_modules/source-map-url/bower.json +0 -20
- package/http/node_modules/source-map-url/changelog.md +0 -52
- package/http/node_modules/source-map-url/component.json +0 -18
- package/http/node_modules/source-map-url/package.json +0 -73
- package/http/node_modules/source-map-url/readme.md +0 -97
- package/http/node_modules/source-map-url/source-map-url.js +0 -57
- package/http/node_modules/source-map-url/test/source-map-url.js +0 -402
- package/http/node_modules/source-map-url/x-package.json5 +0 -55
- package/http/node_modules/split-string/LICENSE +0 -21
- package/http/node_modules/split-string/README.md +0 -321
- package/http/node_modules/split-string/index.js +0 -171
- package/http/node_modules/split-string/package.json +0 -103
- package/http/node_modules/sprintf-js/CHANGELOG.md +0 -17
- package/http/node_modules/sprintf-js/CONTRIBUTORS.md +0 -25
- package/http/node_modules/sprintf-js/LICENSE +0 -24
- package/http/node_modules/sprintf-js/README.md +0 -143
- package/http/node_modules/sprintf-js/dist/.gitattributes +0 -4
- package/http/node_modules/sprintf-js/dist/angular-sprintf.min.js +0 -3
- package/http/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +0 -1
- package/http/node_modules/sprintf-js/dist/sprintf.min.js +0 -3
- package/http/node_modules/sprintf-js/dist/sprintf.min.js.map +0 -1
- package/http/node_modules/sprintf-js/package.json +0 -63
- package/http/node_modules/sprintf-js/src/angular-sprintf.js +0 -24
- package/http/node_modules/sprintf-js/src/sprintf.js +0 -231
- package/http/node_modules/static-extend/LICENSE +0 -21
- package/http/node_modules/static-extend/index.js +0 -90
- package/http/node_modules/static-extend/package.json +0 -96
- package/http/node_modules/statuses/HISTORY.md +0 -65
- package/http/node_modules/statuses/LICENSE +0 -23
- package/http/node_modules/statuses/README.md +0 -127
- package/http/node_modules/statuses/codes.json +0 -66
- package/http/node_modules/statuses/index.js +0 -113
- package/http/node_modules/statuses/package.json +0 -90
- package/http/node_modules/strip-ansi/index.d.ts +0 -15
- package/http/node_modules/strip-ansi/index.js +0 -7
- package/http/node_modules/strip-ansi/license +0 -9
- package/http/node_modules/strip-ansi/package.json +0 -86
- package/http/node_modules/strip-ansi/readme.md +0 -61
- package/http/node_modules/supports-color/browser.js +0 -5
- package/http/node_modules/supports-color/index.js +0 -135
- package/http/node_modules/supports-color/license +0 -9
- package/http/node_modules/supports-color/package.json +0 -85
- package/http/node_modules/supports-color/readme.md +0 -76
- package/http/node_modules/to-object-path/LICENSE +0 -21
- package/http/node_modules/to-object-path/README.md +0 -71
- package/http/node_modules/to-object-path/index.js +0 -33
- package/http/node_modules/to-object-path/package.json +0 -81
- package/http/node_modules/to-regex/LICENSE +0 -21
- package/http/node_modules/to-regex/README.md +0 -205
- package/http/node_modules/to-regex/index.js +0 -155
- package/http/node_modules/to-regex/package.json +0 -97
- package/http/node_modules/to-regex-range/LICENSE +0 -21
- package/http/node_modules/to-regex-range/README.md +0 -281
- package/http/node_modules/to-regex-range/index.js +0 -294
- package/http/node_modules/to-regex-range/package.json +0 -117
- package/http/node_modules/toidentifier/LICENSE +0 -21
- package/http/node_modules/toidentifier/README.md +0 -61
- package/http/node_modules/toidentifier/index.js +0 -30
- package/http/node_modules/toidentifier/package.json +0 -76
- package/http/node_modules/type-is/HISTORY.md +0 -259
- package/http/node_modules/type-is/LICENSE +0 -23
- package/http/node_modules/type-is/README.md +0 -170
- package/http/node_modules/type-is/index.js +0 -266
- package/http/node_modules/type-is/package.json +0 -85
- package/http/node_modules/uid-safe/HISTORY.md +0 -61
- package/http/node_modules/uid-safe/LICENSE +0 -22
- package/http/node_modules/uid-safe/README.md +0 -77
- package/http/node_modules/uid-safe/index.js +0 -107
- package/http/node_modules/uid-safe/package.json +0 -85
- package/http/node_modules/unc-path-regex/LICENSE +0 -21
- package/http/node_modules/unc-path-regex/README.md +0 -88
- package/http/node_modules/unc-path-regex/index.js +0 -5
- package/http/node_modules/unc-path-regex/package.json +0 -84
- package/http/node_modules/underscore.string/.eslintignore +0 -8
- package/http/node_modules/underscore.string/.eslintrc +0 -26
- package/http/node_modules/underscore.string/.travis.yml +0 -4
- package/http/node_modules/underscore.string/CHANGELOG.markdown +0 -206
- package/http/node_modules/underscore.string/CONTRIBUTING.markdown +0 -32
- package/http/node_modules/underscore.string/README.markdown +0 -888
- package/http/node_modules/underscore.string/bower.json +0 -34
- package/http/node_modules/underscore.string/camelize.js +0 -14
- package/http/node_modules/underscore.string/capitalize.js +0 -8
- package/http/node_modules/underscore.string/chars.js +0 -5
- package/http/node_modules/underscore.string/chop.js +0 -6
- package/http/node_modules/underscore.string/classify.js +0 -8
- package/http/node_modules/underscore.string/clean.js +0 -5
- package/http/node_modules/underscore.string/cleanDiacritics.js +0 -22
- package/http/node_modules/underscore.string/component.json +0 -16
- package/http/node_modules/underscore.string/count.js +0 -10
- package/http/node_modules/underscore.string/dasherize.js +0 -5
- package/http/node_modules/underscore.string/decapitalize.js +0 -6
- package/http/node_modules/underscore.string/dedent.js +0 -28
- package/http/node_modules/underscore.string/dist/underscore.string.js +0 -1369
- package/http/node_modules/underscore.string/dist/underscore.string.min.js +0 -19
- package/http/node_modules/underscore.string/endsWith.js +0 -13
- package/http/node_modules/underscore.string/escapeHTML.js +0 -17
- package/http/node_modules/underscore.string/exports.js +0 -10
- package/http/node_modules/underscore.string/helper/adjacent.js +0 -9
- package/http/node_modules/underscore.string/helper/defaultToWhiteSpace.js +0 -10
- package/http/node_modules/underscore.string/helper/escapeChars.js +0 -19
- package/http/node_modules/underscore.string/helper/escapeRegExp.js +0 -5
- package/http/node_modules/underscore.string/helper/htmlEntities.js +0 -19
- package/http/node_modules/underscore.string/helper/makeString.js +0 -7
- package/http/node_modules/underscore.string/helper/strRepeat.js +0 -9
- package/http/node_modules/underscore.string/helper/toPositive.js +0 -3
- package/http/node_modules/underscore.string/humanize.js +0 -7
- package/http/node_modules/underscore.string/include.js +0 -6
- package/http/node_modules/underscore.string/index.js +0 -143
- package/http/node_modules/underscore.string/insert.js +0 -5
- package/http/node_modules/underscore.string/isBlank.js +0 -5
- package/http/node_modules/underscore.string/join.js +0 -9
- package/http/node_modules/underscore.string/levenshtein.js +0 -52
- package/http/node_modules/underscore.string/lines.js +0 -4
- package/http/node_modules/underscore.string/lpad.js +0 -5
- package/http/node_modules/underscore.string/lrpad.js +0 -5
- package/http/node_modules/underscore.string/ltrim.js +0 -10
- package/http/node_modules/underscore.string/map.js +0 -9
- package/http/node_modules/underscore.string/meteor-post.js +0 -2
- package/http/node_modules/underscore.string/meteor-pre.js +0 -6
- package/http/node_modules/underscore.string/naturalCmp.js +0 -29
- package/http/node_modules/underscore.string/numberFormat.js +0 -12
- package/http/node_modules/underscore.string/package.js +0 -16
- package/http/node_modules/underscore.string/package.json +0 -131
- package/http/node_modules/underscore.string/pad.js +0 -26
- package/http/node_modules/underscore.string/pred.js +0 -5
- package/http/node_modules/underscore.string/prune.js +0 -27
- package/http/node_modules/underscore.string/quote.js +0 -5
- package/http/node_modules/underscore.string/repeat.js +0 -16
- package/http/node_modules/underscore.string/replaceAll.js +0 -8
- package/http/node_modules/underscore.string/reverse.js +0 -5
- package/http/node_modules/underscore.string/rpad.js +0 -5
- package/http/node_modules/underscore.string/rtrim.js +0 -10
- package/http/node_modules/underscore.string/slugify.js +0 -7
- package/http/node_modules/underscore.string/splice.js +0 -7
- package/http/node_modules/underscore.string/sprintf.js +0 -4
- package/http/node_modules/underscore.string/startsWith.js +0 -9
- package/http/node_modules/underscore.string/strLeft.js +0 -8
- package/http/node_modules/underscore.string/strLeftBack.js +0 -8
- package/http/node_modules/underscore.string/strRight.js +0 -8
- package/http/node_modules/underscore.string/strRightBack.js +0 -8
- package/http/node_modules/underscore.string/stripTags.js +0 -5
- package/http/node_modules/underscore.string/succ.js +0 -5
- package/http/node_modules/underscore.string/surround.js +0 -3
- package/http/node_modules/underscore.string/swapCase.js +0 -7
- package/http/node_modules/underscore.string/titleize.js +0 -7
- package/http/node_modules/underscore.string/toBoolean.js +0 -20
- package/http/node_modules/underscore.string/toNumber.js +0 -5
- package/http/node_modules/underscore.string/toSentence.js +0 -12
- package/http/node_modules/underscore.string/toSentenceSerial.js +0 -5
- package/http/node_modules/underscore.string/trim.js +0 -10
- package/http/node_modules/underscore.string/truncate.js +0 -8
- package/http/node_modules/underscore.string/underscored.js +0 -5
- package/http/node_modules/underscore.string/unescapeHTML.js +0 -20
- package/http/node_modules/underscore.string/unquote.js +0 -6
- package/http/node_modules/underscore.string/vsprintf.js +0 -4
- package/http/node_modules/underscore.string/words.js +0 -7
- package/http/node_modules/underscore.string/wrap.js +0 -102
- package/http/node_modules/union-value/LICENSE +0 -21
- package/http/node_modules/union-value/README.md +0 -73
- package/http/node_modules/union-value/index.js +0 -30
- package/http/node_modules/union-value/package.json +0 -101
- package/http/node_modules/unpipe/HISTORY.md +0 -4
- package/http/node_modules/unpipe/LICENSE +0 -22
- package/http/node_modules/unpipe/README.md +0 -43
- package/http/node_modules/unpipe/index.js +0 -69
- package/http/node_modules/unpipe/package.json +0 -63
- package/http/node_modules/unset-value/LICENSE +0 -21
- package/http/node_modules/unset-value/README.md +0 -131
- package/http/node_modules/unset-value/index.js +0 -32
- package/http/node_modules/unset-value/package.json +0 -112
- package/http/node_modules/urix/.jshintrc +0 -42
- package/http/node_modules/urix/LICENSE +0 -21
- package/http/node_modules/urix/index.js +0 -17
- package/http/node_modules/urix/package.json +0 -59
- package/http/node_modules/urix/readme.md +0 -46
- package/http/node_modules/urix/test/index.js +0 -43
- package/http/node_modules/use/LICENSE +0 -21
- package/http/node_modules/use/README.md +0 -90
- package/http/node_modules/use/index.js +0 -155
- package/http/node_modules/use/package.json +0 -108
- package/http/node_modules/util-deprecate/History.md +0 -16
- package/http/node_modules/util-deprecate/LICENSE +0 -24
- package/http/node_modules/util-deprecate/README.md +0 -53
- package/http/node_modules/util-deprecate/browser.js +0 -67
- package/http/node_modules/util-deprecate/node.js +0 -6
- package/http/node_modules/util-deprecate/package.json +0 -56
- package/http/node_modules/utils-merge/LICENSE +0 -20
- package/http/node_modules/utils-merge/README.md +0 -34
- package/http/node_modules/utils-merge/index.js +0 -23
- package/http/node_modules/utils-merge/package.json +0 -66
- package/http/node_modules/v8flags/LICENSE +0 -21
- package/http/node_modules/v8flags/README.md +0 -64
- package/http/node_modules/v8flags/config-path.js +0 -38
- package/http/node_modules/v8flags/index.js +0 -162
- package/http/node_modules/v8flags/package.json +0 -99
- package/http/node_modules/vary/HISTORY.md +0 -39
- package/http/node_modules/vary/LICENSE +0 -22
- package/http/node_modules/vary/README.md +0 -101
- package/http/node_modules/vary/index.js +0 -149
- package/http/node_modules/vary/package.json +0 -78
- package/http/node_modules/which/CHANGELOG.md +0 -152
- package/http/node_modules/which/LICENSE +0 -15
- package/http/node_modules/which/README.md +0 -51
- package/http/node_modules/which/bin/which +0 -52
- package/http/node_modules/which/package.json +0 -66
- package/http/node_modules/which/which.js +0 -135
- package/http/node_modules/wrappy/LICENSE +0 -15
- package/http/node_modules/wrappy/README.md +0 -36
- package/http/node_modules/wrappy/package.json +0 -59
- package/http/node_modules/wrappy/wrappy.js +0 -33
- package/http/package-lock.json +0 -2312
- package/mailbody.js +0 -502
- package/mailheader.js +0 -308
- package/messagestream.js +0 -441
- package/plugins/aliases.js +0 -120
- package/plugins/attachment.js +0 -503
- package/plugins/connect.p0f.js +0 -5
- package/plugins/spf.js +0 -327
- package/spf.js +0 -689
- package/tests/mailbody.js +0 -346
- package/tests/mailheader.js +0 -127
- package/tests/messagestream.js +0 -34
- package/tests/plugins/aliases.js +0 -376
- package/tests/plugins/spf.js +0 -251
- package/tests/spf.js +0 -96
|
@@ -1,3836 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Lodash (Custom Build) <https://lodash.com/>
|
|
4
|
-
* Build: `lodash core -o ./dist/lodash.core.js`
|
|
5
|
-
* Copyright JS Foundation and other contributors <https://js.foundation/>
|
|
6
|
-
* Released under MIT license <https://lodash.com/license>
|
|
7
|
-
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
8
|
-
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
9
|
-
*/
|
|
10
|
-
;(function() {
|
|
11
|
-
|
|
12
|
-
/** Used as a safe reference for `undefined` in pre-ES5 environments. */
|
|
13
|
-
var undefined;
|
|
14
|
-
|
|
15
|
-
/** Used as the semantic version number. */
|
|
16
|
-
var VERSION = '4.17.4';
|
|
17
|
-
|
|
18
|
-
/** Error message constants. */
|
|
19
|
-
var FUNC_ERROR_TEXT = 'Expected a function';
|
|
20
|
-
|
|
21
|
-
/** Used to compose bitmasks for value comparisons. */
|
|
22
|
-
var COMPARE_PARTIAL_FLAG = 1,
|
|
23
|
-
COMPARE_UNORDERED_FLAG = 2;
|
|
24
|
-
|
|
25
|
-
/** Used to compose bitmasks for function metadata. */
|
|
26
|
-
var WRAP_BIND_FLAG = 1,
|
|
27
|
-
WRAP_PARTIAL_FLAG = 32;
|
|
28
|
-
|
|
29
|
-
/** Used as references for various `Number` constants. */
|
|
30
|
-
var INFINITY = 1 / 0,
|
|
31
|
-
MAX_SAFE_INTEGER = 9007199254740991;
|
|
32
|
-
|
|
33
|
-
/** `Object#toString` result references. */
|
|
34
|
-
var argsTag = '[object Arguments]',
|
|
35
|
-
arrayTag = '[object Array]',
|
|
36
|
-
asyncTag = '[object AsyncFunction]',
|
|
37
|
-
boolTag = '[object Boolean]',
|
|
38
|
-
dateTag = '[object Date]',
|
|
39
|
-
errorTag = '[object Error]',
|
|
40
|
-
funcTag = '[object Function]',
|
|
41
|
-
genTag = '[object GeneratorFunction]',
|
|
42
|
-
numberTag = '[object Number]',
|
|
43
|
-
objectTag = '[object Object]',
|
|
44
|
-
proxyTag = '[object Proxy]',
|
|
45
|
-
regexpTag = '[object RegExp]',
|
|
46
|
-
stringTag = '[object String]';
|
|
47
|
-
|
|
48
|
-
/** Used to match HTML entities and HTML characters. */
|
|
49
|
-
var reUnescapedHtml = /[&<>"']/g,
|
|
50
|
-
reHasUnescapedHtml = RegExp(reUnescapedHtml.source);
|
|
51
|
-
|
|
52
|
-
/** Used to map characters to HTML entities. */
|
|
53
|
-
var htmlEscapes = {
|
|
54
|
-
'&': '&',
|
|
55
|
-
'<': '<',
|
|
56
|
-
'>': '>',
|
|
57
|
-
'"': '"',
|
|
58
|
-
"'": '''
|
|
59
|
-
};
|
|
60
|
-
|
|
61
|
-
/** Detect free variable `global` from Node.js. */
|
|
62
|
-
var freeGlobal = typeof global == 'object' && global && global.Object === Object && global;
|
|
63
|
-
|
|
64
|
-
/** Detect free variable `self`. */
|
|
65
|
-
var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
|
|
66
|
-
|
|
67
|
-
/** Used as a reference to the global object. */
|
|
68
|
-
var root = freeGlobal || freeSelf || Function('return this')();
|
|
69
|
-
|
|
70
|
-
/** Detect free variable `exports`. */
|
|
71
|
-
var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
|
|
72
|
-
|
|
73
|
-
/** Detect free variable `module`. */
|
|
74
|
-
var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;
|
|
75
|
-
|
|
76
|
-
/*--------------------------------------------------------------------------*/
|
|
77
|
-
|
|
78
|
-
/**
|
|
79
|
-
* Appends the elements of `values` to `array`.
|
|
80
|
-
*
|
|
81
|
-
* @private
|
|
82
|
-
* @param {Array} array The array to modify.
|
|
83
|
-
* @param {Array} values The values to append.
|
|
84
|
-
* @returns {Array} Returns `array`.
|
|
85
|
-
*/
|
|
86
|
-
function arrayPush(array, values) {
|
|
87
|
-
array.push.apply(array, values);
|
|
88
|
-
return array;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
/**
|
|
92
|
-
* The base implementation of `_.findIndex` and `_.findLastIndex` without
|
|
93
|
-
* support for iteratee shorthands.
|
|
94
|
-
*
|
|
95
|
-
* @private
|
|
96
|
-
* @param {Array} array The array to inspect.
|
|
97
|
-
* @param {Function} predicate The function invoked per iteration.
|
|
98
|
-
* @param {number} fromIndex The index to search from.
|
|
99
|
-
* @param {boolean} [fromRight] Specify iterating from right to left.
|
|
100
|
-
* @returns {number} Returns the index of the matched value, else `-1`.
|
|
101
|
-
*/
|
|
102
|
-
function baseFindIndex(array, predicate, fromIndex, fromRight) {
|
|
103
|
-
var length = array.length,
|
|
104
|
-
index = fromIndex + (fromRight ? 1 : -1);
|
|
105
|
-
|
|
106
|
-
while ((fromRight ? index-- : ++index < length)) {
|
|
107
|
-
if (predicate(array[index], index, array)) {
|
|
108
|
-
return index;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
return -1;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
/**
|
|
115
|
-
* The base implementation of `_.property` without support for deep paths.
|
|
116
|
-
*
|
|
117
|
-
* @private
|
|
118
|
-
* @param {string} key The key of the property to get.
|
|
119
|
-
* @returns {Function} Returns the new accessor function.
|
|
120
|
-
*/
|
|
121
|
-
function baseProperty(key) {
|
|
122
|
-
return function(object) {
|
|
123
|
-
return object == null ? undefined : object[key];
|
|
124
|
-
};
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* The base implementation of `_.propertyOf` without support for deep paths.
|
|
129
|
-
*
|
|
130
|
-
* @private
|
|
131
|
-
* @param {Object} object The object to query.
|
|
132
|
-
* @returns {Function} Returns the new accessor function.
|
|
133
|
-
*/
|
|
134
|
-
function basePropertyOf(object) {
|
|
135
|
-
return function(key) {
|
|
136
|
-
return object == null ? undefined : object[key];
|
|
137
|
-
};
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
/**
|
|
141
|
-
* The base implementation of `_.reduce` and `_.reduceRight`, without support
|
|
142
|
-
* for iteratee shorthands, which iterates over `collection` using `eachFunc`.
|
|
143
|
-
*
|
|
144
|
-
* @private
|
|
145
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
146
|
-
* @param {Function} iteratee The function invoked per iteration.
|
|
147
|
-
* @param {*} accumulator The initial value.
|
|
148
|
-
* @param {boolean} initAccum Specify using the first or last element of
|
|
149
|
-
* `collection` as the initial value.
|
|
150
|
-
* @param {Function} eachFunc The function to iterate over `collection`.
|
|
151
|
-
* @returns {*} Returns the accumulated value.
|
|
152
|
-
*/
|
|
153
|
-
function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) {
|
|
154
|
-
eachFunc(collection, function(value, index, collection) {
|
|
155
|
-
accumulator = initAccum
|
|
156
|
-
? (initAccum = false, value)
|
|
157
|
-
: iteratee(accumulator, value, index, collection);
|
|
158
|
-
});
|
|
159
|
-
return accumulator;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
/**
|
|
163
|
-
* The base implementation of `_.values` and `_.valuesIn` which creates an
|
|
164
|
-
* array of `object` property values corresponding to the property names
|
|
165
|
-
* of `props`.
|
|
166
|
-
*
|
|
167
|
-
* @private
|
|
168
|
-
* @param {Object} object The object to query.
|
|
169
|
-
* @param {Array} props The property names to get values for.
|
|
170
|
-
* @returns {Object} Returns the array of property values.
|
|
171
|
-
*/
|
|
172
|
-
function baseValues(object, props) {
|
|
173
|
-
return baseMap(props, function(key) {
|
|
174
|
-
return object[key];
|
|
175
|
-
});
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
/**
|
|
179
|
-
* Used by `_.escape` to convert characters to HTML entities.
|
|
180
|
-
*
|
|
181
|
-
* @private
|
|
182
|
-
* @param {string} chr The matched character to escape.
|
|
183
|
-
* @returns {string} Returns the escaped character.
|
|
184
|
-
*/
|
|
185
|
-
var escapeHtmlChar = basePropertyOf(htmlEscapes);
|
|
186
|
-
|
|
187
|
-
/**
|
|
188
|
-
* Creates a unary function that invokes `func` with its argument transformed.
|
|
189
|
-
*
|
|
190
|
-
* @private
|
|
191
|
-
* @param {Function} func The function to wrap.
|
|
192
|
-
* @param {Function} transform The argument transform.
|
|
193
|
-
* @returns {Function} Returns the new function.
|
|
194
|
-
*/
|
|
195
|
-
function overArg(func, transform) {
|
|
196
|
-
return function(arg) {
|
|
197
|
-
return func(transform(arg));
|
|
198
|
-
};
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
/*--------------------------------------------------------------------------*/
|
|
202
|
-
|
|
203
|
-
/** Used for built-in method references. */
|
|
204
|
-
var arrayProto = Array.prototype,
|
|
205
|
-
objectProto = Object.prototype;
|
|
206
|
-
|
|
207
|
-
/** Used to check objects for own properties. */
|
|
208
|
-
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
209
|
-
|
|
210
|
-
/** Used to generate unique IDs. */
|
|
211
|
-
var idCounter = 0;
|
|
212
|
-
|
|
213
|
-
/**
|
|
214
|
-
* Used to resolve the
|
|
215
|
-
* [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
|
|
216
|
-
* of values.
|
|
217
|
-
*/
|
|
218
|
-
var nativeObjectToString = objectProto.toString;
|
|
219
|
-
|
|
220
|
-
/** Used to restore the original `_` reference in `_.noConflict`. */
|
|
221
|
-
var oldDash = root._;
|
|
222
|
-
|
|
223
|
-
/** Built-in value references. */
|
|
224
|
-
var objectCreate = Object.create,
|
|
225
|
-
propertyIsEnumerable = objectProto.propertyIsEnumerable;
|
|
226
|
-
|
|
227
|
-
/* Built-in method references for those with the same name as other `lodash` methods. */
|
|
228
|
-
var nativeIsFinite = root.isFinite,
|
|
229
|
-
nativeKeys = overArg(Object.keys, Object),
|
|
230
|
-
nativeMax = Math.max;
|
|
231
|
-
|
|
232
|
-
/*------------------------------------------------------------------------*/
|
|
233
|
-
|
|
234
|
-
/**
|
|
235
|
-
* Creates a `lodash` object which wraps `value` to enable implicit method
|
|
236
|
-
* chain sequences. Methods that operate on and return arrays, collections,
|
|
237
|
-
* and functions can be chained together. Methods that retrieve a single value
|
|
238
|
-
* or may return a primitive value will automatically end the chain sequence
|
|
239
|
-
* and return the unwrapped value. Otherwise, the value must be unwrapped
|
|
240
|
-
* with `_#value`.
|
|
241
|
-
*
|
|
242
|
-
* Explicit chain sequences, which must be unwrapped with `_#value`, may be
|
|
243
|
-
* enabled using `_.chain`.
|
|
244
|
-
*
|
|
245
|
-
* The execution of chained methods is lazy, that is, it's deferred until
|
|
246
|
-
* `_#value` is implicitly or explicitly called.
|
|
247
|
-
*
|
|
248
|
-
* Lazy evaluation allows several methods to support shortcut fusion.
|
|
249
|
-
* Shortcut fusion is an optimization to merge iteratee calls; this avoids
|
|
250
|
-
* the creation of intermediate arrays and can greatly reduce the number of
|
|
251
|
-
* iteratee executions. Sections of a chain sequence qualify for shortcut
|
|
252
|
-
* fusion if the section is applied to an array and iteratees accept only
|
|
253
|
-
* one argument. The heuristic for whether a section qualifies for shortcut
|
|
254
|
-
* fusion is subject to change.
|
|
255
|
-
*
|
|
256
|
-
* Chaining is supported in custom builds as long as the `_#value` method is
|
|
257
|
-
* directly or indirectly included in the build.
|
|
258
|
-
*
|
|
259
|
-
* In addition to lodash methods, wrappers have `Array` and `String` methods.
|
|
260
|
-
*
|
|
261
|
-
* The wrapper `Array` methods are:
|
|
262
|
-
* `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift`
|
|
263
|
-
*
|
|
264
|
-
* The wrapper `String` methods are:
|
|
265
|
-
* `replace` and `split`
|
|
266
|
-
*
|
|
267
|
-
* The wrapper methods that support shortcut fusion are:
|
|
268
|
-
* `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`,
|
|
269
|
-
* `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`,
|
|
270
|
-
* `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray`
|
|
271
|
-
*
|
|
272
|
-
* The chainable wrapper methods are:
|
|
273
|
-
* `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`,
|
|
274
|
-
* `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`,
|
|
275
|
-
* `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`,
|
|
276
|
-
* `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`,
|
|
277
|
-
* `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`,
|
|
278
|
-
* `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`,
|
|
279
|
-
* `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`,
|
|
280
|
-
* `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`,
|
|
281
|
-
* `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`,
|
|
282
|
-
* `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`,
|
|
283
|
-
* `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`,
|
|
284
|
-
* `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`,
|
|
285
|
-
* `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`,
|
|
286
|
-
* `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`,
|
|
287
|
-
* `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`,
|
|
288
|
-
* `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`,
|
|
289
|
-
* `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`,
|
|
290
|
-
* `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`,
|
|
291
|
-
* `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`,
|
|
292
|
-
* `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`,
|
|
293
|
-
* `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`,
|
|
294
|
-
* `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`,
|
|
295
|
-
* `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`,
|
|
296
|
-
* `zipObject`, `zipObjectDeep`, and `zipWith`
|
|
297
|
-
*
|
|
298
|
-
* The wrapper methods that are **not** chainable by default are:
|
|
299
|
-
* `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`,
|
|
300
|
-
* `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`,
|
|
301
|
-
* `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`,
|
|
302
|
-
* `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`,
|
|
303
|
-
* `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`,
|
|
304
|
-
* `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`,
|
|
305
|
-
* `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`,
|
|
306
|
-
* `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`,
|
|
307
|
-
* `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`,
|
|
308
|
-
* `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`,
|
|
309
|
-
* `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`,
|
|
310
|
-
* `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`,
|
|
311
|
-
* `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`,
|
|
312
|
-
* `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`,
|
|
313
|
-
* `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`,
|
|
314
|
-
* `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`,
|
|
315
|
-
* `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`,
|
|
316
|
-
* `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`,
|
|
317
|
-
* `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`,
|
|
318
|
-
* `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`,
|
|
319
|
-
* `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`,
|
|
320
|
-
* `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`,
|
|
321
|
-
* `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`,
|
|
322
|
-
* `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`,
|
|
323
|
-
* `upperFirst`, `value`, and `words`
|
|
324
|
-
*
|
|
325
|
-
* @name _
|
|
326
|
-
* @constructor
|
|
327
|
-
* @category Seq
|
|
328
|
-
* @param {*} value The value to wrap in a `lodash` instance.
|
|
329
|
-
* @returns {Object} Returns the new `lodash` wrapper instance.
|
|
330
|
-
* @example
|
|
331
|
-
*
|
|
332
|
-
* function square(n) {
|
|
333
|
-
* return n * n;
|
|
334
|
-
* }
|
|
335
|
-
*
|
|
336
|
-
* var wrapped = _([1, 2, 3]);
|
|
337
|
-
*
|
|
338
|
-
* // Returns an unwrapped value.
|
|
339
|
-
* wrapped.reduce(_.add);
|
|
340
|
-
* // => 6
|
|
341
|
-
*
|
|
342
|
-
* // Returns a wrapped value.
|
|
343
|
-
* var squares = wrapped.map(square);
|
|
344
|
-
*
|
|
345
|
-
* _.isArray(squares);
|
|
346
|
-
* // => false
|
|
347
|
-
*
|
|
348
|
-
* _.isArray(squares.value());
|
|
349
|
-
* // => true
|
|
350
|
-
*/
|
|
351
|
-
function lodash(value) {
|
|
352
|
-
return value instanceof LodashWrapper
|
|
353
|
-
? value
|
|
354
|
-
: new LodashWrapper(value);
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
/**
|
|
358
|
-
* The base implementation of `_.create` without support for assigning
|
|
359
|
-
* properties to the created object.
|
|
360
|
-
*
|
|
361
|
-
* @private
|
|
362
|
-
* @param {Object} proto The object to inherit from.
|
|
363
|
-
* @returns {Object} Returns the new object.
|
|
364
|
-
*/
|
|
365
|
-
var baseCreate = (function() {
|
|
366
|
-
function object() {}
|
|
367
|
-
return function(proto) {
|
|
368
|
-
if (!isObject(proto)) {
|
|
369
|
-
return {};
|
|
370
|
-
}
|
|
371
|
-
if (objectCreate) {
|
|
372
|
-
return objectCreate(proto);
|
|
373
|
-
}
|
|
374
|
-
object.prototype = proto;
|
|
375
|
-
var result = new object;
|
|
376
|
-
object.prototype = undefined;
|
|
377
|
-
return result;
|
|
378
|
-
};
|
|
379
|
-
}());
|
|
380
|
-
|
|
381
|
-
/**
|
|
382
|
-
* The base constructor for creating `lodash` wrapper objects.
|
|
383
|
-
*
|
|
384
|
-
* @private
|
|
385
|
-
* @param {*} value The value to wrap.
|
|
386
|
-
* @param {boolean} [chainAll] Enable explicit method chain sequences.
|
|
387
|
-
*/
|
|
388
|
-
function LodashWrapper(value, chainAll) {
|
|
389
|
-
this.__wrapped__ = value;
|
|
390
|
-
this.__actions__ = [];
|
|
391
|
-
this.__chain__ = !!chainAll;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
LodashWrapper.prototype = baseCreate(lodash.prototype);
|
|
395
|
-
LodashWrapper.prototype.constructor = LodashWrapper;
|
|
396
|
-
|
|
397
|
-
/*------------------------------------------------------------------------*/
|
|
398
|
-
|
|
399
|
-
/**
|
|
400
|
-
* Assigns `value` to `key` of `object` if the existing value is not equivalent
|
|
401
|
-
* using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
|
|
402
|
-
* for equality comparisons.
|
|
403
|
-
*
|
|
404
|
-
* @private
|
|
405
|
-
* @param {Object} object The object to modify.
|
|
406
|
-
* @param {string} key The key of the property to assign.
|
|
407
|
-
* @param {*} value The value to assign.
|
|
408
|
-
*/
|
|
409
|
-
function assignValue(object, key, value) {
|
|
410
|
-
var objValue = object[key];
|
|
411
|
-
if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||
|
|
412
|
-
(value === undefined && !(key in object))) {
|
|
413
|
-
baseAssignValue(object, key, value);
|
|
414
|
-
}
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
/**
|
|
418
|
-
* The base implementation of `assignValue` and `assignMergeValue` without
|
|
419
|
-
* value checks.
|
|
420
|
-
*
|
|
421
|
-
* @private
|
|
422
|
-
* @param {Object} object The object to modify.
|
|
423
|
-
* @param {string} key The key of the property to assign.
|
|
424
|
-
* @param {*} value The value to assign.
|
|
425
|
-
*/
|
|
426
|
-
function baseAssignValue(object, key, value) {
|
|
427
|
-
object[key] = value;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
/**
|
|
431
|
-
* The base implementation of `_.delay` and `_.defer` which accepts `args`
|
|
432
|
-
* to provide to `func`.
|
|
433
|
-
*
|
|
434
|
-
* @private
|
|
435
|
-
* @param {Function} func The function to delay.
|
|
436
|
-
* @param {number} wait The number of milliseconds to delay invocation.
|
|
437
|
-
* @param {Array} args The arguments to provide to `func`.
|
|
438
|
-
* @returns {number|Object} Returns the timer id or timeout object.
|
|
439
|
-
*/
|
|
440
|
-
function baseDelay(func, wait, args) {
|
|
441
|
-
if (typeof func != 'function') {
|
|
442
|
-
throw new TypeError(FUNC_ERROR_TEXT);
|
|
443
|
-
}
|
|
444
|
-
return setTimeout(function() { func.apply(undefined, args); }, wait);
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
/**
|
|
448
|
-
* The base implementation of `_.forEach` without support for iteratee shorthands.
|
|
449
|
-
*
|
|
450
|
-
* @private
|
|
451
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
452
|
-
* @param {Function} iteratee The function invoked per iteration.
|
|
453
|
-
* @returns {Array|Object} Returns `collection`.
|
|
454
|
-
*/
|
|
455
|
-
var baseEach = createBaseEach(baseForOwn);
|
|
456
|
-
|
|
457
|
-
/**
|
|
458
|
-
* The base implementation of `_.every` without support for iteratee shorthands.
|
|
459
|
-
*
|
|
460
|
-
* @private
|
|
461
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
462
|
-
* @param {Function} predicate The function invoked per iteration.
|
|
463
|
-
* @returns {boolean} Returns `true` if all elements pass the predicate check,
|
|
464
|
-
* else `false`
|
|
465
|
-
*/
|
|
466
|
-
function baseEvery(collection, predicate) {
|
|
467
|
-
var result = true;
|
|
468
|
-
baseEach(collection, function(value, index, collection) {
|
|
469
|
-
result = !!predicate(value, index, collection);
|
|
470
|
-
return result;
|
|
471
|
-
});
|
|
472
|
-
return result;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
/**
|
|
476
|
-
* The base implementation of methods like `_.max` and `_.min` which accepts a
|
|
477
|
-
* `comparator` to determine the extremum value.
|
|
478
|
-
*
|
|
479
|
-
* @private
|
|
480
|
-
* @param {Array} array The array to iterate over.
|
|
481
|
-
* @param {Function} iteratee The iteratee invoked per iteration.
|
|
482
|
-
* @param {Function} comparator The comparator used to compare values.
|
|
483
|
-
* @returns {*} Returns the extremum value.
|
|
484
|
-
*/
|
|
485
|
-
function baseExtremum(array, iteratee, comparator) {
|
|
486
|
-
var index = -1,
|
|
487
|
-
length = array.length;
|
|
488
|
-
|
|
489
|
-
while (++index < length) {
|
|
490
|
-
var value = array[index],
|
|
491
|
-
current = iteratee(value);
|
|
492
|
-
|
|
493
|
-
if (current != null && (computed === undefined
|
|
494
|
-
? (current === current && !false)
|
|
495
|
-
: comparator(current, computed)
|
|
496
|
-
)) {
|
|
497
|
-
var computed = current,
|
|
498
|
-
result = value;
|
|
499
|
-
}
|
|
500
|
-
}
|
|
501
|
-
return result;
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
/**
|
|
505
|
-
* The base implementation of `_.filter` without support for iteratee shorthands.
|
|
506
|
-
*
|
|
507
|
-
* @private
|
|
508
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
509
|
-
* @param {Function} predicate The function invoked per iteration.
|
|
510
|
-
* @returns {Array} Returns the new filtered array.
|
|
511
|
-
*/
|
|
512
|
-
function baseFilter(collection, predicate) {
|
|
513
|
-
var result = [];
|
|
514
|
-
baseEach(collection, function(value, index, collection) {
|
|
515
|
-
if (predicate(value, index, collection)) {
|
|
516
|
-
result.push(value);
|
|
517
|
-
}
|
|
518
|
-
});
|
|
519
|
-
return result;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
/**
|
|
523
|
-
* The base implementation of `_.flatten` with support for restricting flattening.
|
|
524
|
-
*
|
|
525
|
-
* @private
|
|
526
|
-
* @param {Array} array The array to flatten.
|
|
527
|
-
* @param {number} depth The maximum recursion depth.
|
|
528
|
-
* @param {boolean} [predicate=isFlattenable] The function invoked per iteration.
|
|
529
|
-
* @param {boolean} [isStrict] Restrict to values that pass `predicate` checks.
|
|
530
|
-
* @param {Array} [result=[]] The initial result value.
|
|
531
|
-
* @returns {Array} Returns the new flattened array.
|
|
532
|
-
*/
|
|
533
|
-
function baseFlatten(array, depth, predicate, isStrict, result) {
|
|
534
|
-
var index = -1,
|
|
535
|
-
length = array.length;
|
|
536
|
-
|
|
537
|
-
predicate || (predicate = isFlattenable);
|
|
538
|
-
result || (result = []);
|
|
539
|
-
|
|
540
|
-
while (++index < length) {
|
|
541
|
-
var value = array[index];
|
|
542
|
-
if (depth > 0 && predicate(value)) {
|
|
543
|
-
if (depth > 1) {
|
|
544
|
-
// Recursively flatten arrays (susceptible to call stack limits).
|
|
545
|
-
baseFlatten(value, depth - 1, predicate, isStrict, result);
|
|
546
|
-
} else {
|
|
547
|
-
arrayPush(result, value);
|
|
548
|
-
}
|
|
549
|
-
} else if (!isStrict) {
|
|
550
|
-
result[result.length] = value;
|
|
551
|
-
}
|
|
552
|
-
}
|
|
553
|
-
return result;
|
|
554
|
-
}
|
|
555
|
-
|
|
556
|
-
/**
|
|
557
|
-
* The base implementation of `baseForOwn` which iterates over `object`
|
|
558
|
-
* properties returned by `keysFunc` and invokes `iteratee` for each property.
|
|
559
|
-
* Iteratee functions may exit iteration early by explicitly returning `false`.
|
|
560
|
-
*
|
|
561
|
-
* @private
|
|
562
|
-
* @param {Object} object The object to iterate over.
|
|
563
|
-
* @param {Function} iteratee The function invoked per iteration.
|
|
564
|
-
* @param {Function} keysFunc The function to get the keys of `object`.
|
|
565
|
-
* @returns {Object} Returns `object`.
|
|
566
|
-
*/
|
|
567
|
-
var baseFor = createBaseFor();
|
|
568
|
-
|
|
569
|
-
/**
|
|
570
|
-
* The base implementation of `_.forOwn` without support for iteratee shorthands.
|
|
571
|
-
*
|
|
572
|
-
* @private
|
|
573
|
-
* @param {Object} object The object to iterate over.
|
|
574
|
-
* @param {Function} iteratee The function invoked per iteration.
|
|
575
|
-
* @returns {Object} Returns `object`.
|
|
576
|
-
*/
|
|
577
|
-
function baseForOwn(object, iteratee) {
|
|
578
|
-
return object && baseFor(object, iteratee, keys);
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
/**
|
|
582
|
-
* The base implementation of `_.functions` which creates an array of
|
|
583
|
-
* `object` function property names filtered from `props`.
|
|
584
|
-
*
|
|
585
|
-
* @private
|
|
586
|
-
* @param {Object} object The object to inspect.
|
|
587
|
-
* @param {Array} props The property names to filter.
|
|
588
|
-
* @returns {Array} Returns the function names.
|
|
589
|
-
*/
|
|
590
|
-
function baseFunctions(object, props) {
|
|
591
|
-
return baseFilter(props, function(key) {
|
|
592
|
-
return isFunction(object[key]);
|
|
593
|
-
});
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
/**
|
|
597
|
-
* The base implementation of `getTag` without fallbacks for buggy environments.
|
|
598
|
-
*
|
|
599
|
-
* @private
|
|
600
|
-
* @param {*} value The value to query.
|
|
601
|
-
* @returns {string} Returns the `toStringTag`.
|
|
602
|
-
*/
|
|
603
|
-
function baseGetTag(value) {
|
|
604
|
-
return objectToString(value);
|
|
605
|
-
}
|
|
606
|
-
|
|
607
|
-
/**
|
|
608
|
-
* The base implementation of `_.gt` which doesn't coerce arguments.
|
|
609
|
-
*
|
|
610
|
-
* @private
|
|
611
|
-
* @param {*} value The value to compare.
|
|
612
|
-
* @param {*} other The other value to compare.
|
|
613
|
-
* @returns {boolean} Returns `true` if `value` is greater than `other`,
|
|
614
|
-
* else `false`.
|
|
615
|
-
*/
|
|
616
|
-
function baseGt(value, other) {
|
|
617
|
-
return value > other;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
/**
|
|
621
|
-
* The base implementation of `_.isArguments`.
|
|
622
|
-
*
|
|
623
|
-
* @private
|
|
624
|
-
* @param {*} value The value to check.
|
|
625
|
-
* @returns {boolean} Returns `true` if `value` is an `arguments` object,
|
|
626
|
-
*/
|
|
627
|
-
var baseIsArguments = noop;
|
|
628
|
-
|
|
629
|
-
/**
|
|
630
|
-
* The base implementation of `_.isDate` without Node.js optimizations.
|
|
631
|
-
*
|
|
632
|
-
* @private
|
|
633
|
-
* @param {*} value The value to check.
|
|
634
|
-
* @returns {boolean} Returns `true` if `value` is a date object, else `false`.
|
|
635
|
-
*/
|
|
636
|
-
function baseIsDate(value) {
|
|
637
|
-
return isObjectLike(value) && baseGetTag(value) == dateTag;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
/**
|
|
641
|
-
* The base implementation of `_.isEqual` which supports partial comparisons
|
|
642
|
-
* and tracks traversed objects.
|
|
643
|
-
*
|
|
644
|
-
* @private
|
|
645
|
-
* @param {*} value The value to compare.
|
|
646
|
-
* @param {*} other The other value to compare.
|
|
647
|
-
* @param {boolean} bitmask The bitmask flags.
|
|
648
|
-
* 1 - Unordered comparison
|
|
649
|
-
* 2 - Partial comparison
|
|
650
|
-
* @param {Function} [customizer] The function to customize comparisons.
|
|
651
|
-
* @param {Object} [stack] Tracks traversed `value` and `other` objects.
|
|
652
|
-
* @returns {boolean} Returns `true` if the values are equivalent, else `false`.
|
|
653
|
-
*/
|
|
654
|
-
function baseIsEqual(value, other, bitmask, customizer, stack) {
|
|
655
|
-
if (value === other) {
|
|
656
|
-
return true;
|
|
657
|
-
}
|
|
658
|
-
if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) {
|
|
659
|
-
return value !== value && other !== other;
|
|
660
|
-
}
|
|
661
|
-
return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
/**
|
|
665
|
-
* A specialized version of `baseIsEqual` for arrays and objects which performs
|
|
666
|
-
* deep comparisons and tracks traversed objects enabling objects with circular
|
|
667
|
-
* references to be compared.
|
|
668
|
-
*
|
|
669
|
-
* @private
|
|
670
|
-
* @param {Object} object The object to compare.
|
|
671
|
-
* @param {Object} other The other object to compare.
|
|
672
|
-
* @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.
|
|
673
|
-
* @param {Function} customizer The function to customize comparisons.
|
|
674
|
-
* @param {Function} equalFunc The function to determine equivalents of values.
|
|
675
|
-
* @param {Object} [stack] Tracks traversed `object` and `other` objects.
|
|
676
|
-
* @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
|
|
677
|
-
*/
|
|
678
|
-
function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {
|
|
679
|
-
var objIsArr = isArray(object),
|
|
680
|
-
othIsArr = isArray(other),
|
|
681
|
-
objTag = objIsArr ? arrayTag : baseGetTag(object),
|
|
682
|
-
othTag = othIsArr ? arrayTag : baseGetTag(other);
|
|
683
|
-
|
|
684
|
-
objTag = objTag == argsTag ? objectTag : objTag;
|
|
685
|
-
othTag = othTag == argsTag ? objectTag : othTag;
|
|
686
|
-
|
|
687
|
-
var objIsObj = objTag == objectTag,
|
|
688
|
-
othIsObj = othTag == objectTag,
|
|
689
|
-
isSameTag = objTag == othTag;
|
|
690
|
-
|
|
691
|
-
stack || (stack = []);
|
|
692
|
-
var objStack = find(stack, function(entry) {
|
|
693
|
-
return entry[0] == object;
|
|
694
|
-
});
|
|
695
|
-
var othStack = find(stack, function(entry) {
|
|
696
|
-
return entry[0] == other;
|
|
697
|
-
});
|
|
698
|
-
if (objStack && othStack) {
|
|
699
|
-
return objStack[1] == other;
|
|
700
|
-
}
|
|
701
|
-
stack.push([object, other]);
|
|
702
|
-
stack.push([other, object]);
|
|
703
|
-
if (isSameTag && !objIsObj) {
|
|
704
|
-
var result = (objIsArr)
|
|
705
|
-
? equalArrays(object, other, bitmask, customizer, equalFunc, stack)
|
|
706
|
-
: equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);
|
|
707
|
-
stack.pop();
|
|
708
|
-
return result;
|
|
709
|
-
}
|
|
710
|
-
if (!(bitmask & COMPARE_PARTIAL_FLAG)) {
|
|
711
|
-
var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),
|
|
712
|
-
othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');
|
|
713
|
-
|
|
714
|
-
if (objIsWrapped || othIsWrapped) {
|
|
715
|
-
var objUnwrapped = objIsWrapped ? object.value() : object,
|
|
716
|
-
othUnwrapped = othIsWrapped ? other.value() : other;
|
|
717
|
-
|
|
718
|
-
var result = equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);
|
|
719
|
-
stack.pop();
|
|
720
|
-
return result;
|
|
721
|
-
}
|
|
722
|
-
}
|
|
723
|
-
if (!isSameTag) {
|
|
724
|
-
return false;
|
|
725
|
-
}
|
|
726
|
-
var result = equalObjects(object, other, bitmask, customizer, equalFunc, stack);
|
|
727
|
-
stack.pop();
|
|
728
|
-
return result;
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
/**
|
|
732
|
-
* The base implementation of `_.isRegExp` without Node.js optimizations.
|
|
733
|
-
*
|
|
734
|
-
* @private
|
|
735
|
-
* @param {*} value The value to check.
|
|
736
|
-
* @returns {boolean} Returns `true` if `value` is a regexp, else `false`.
|
|
737
|
-
*/
|
|
738
|
-
function baseIsRegExp(value) {
|
|
739
|
-
return isObjectLike(value) && baseGetTag(value) == regexpTag;
|
|
740
|
-
}
|
|
741
|
-
|
|
742
|
-
/**
|
|
743
|
-
* The base implementation of `_.iteratee`.
|
|
744
|
-
*
|
|
745
|
-
* @private
|
|
746
|
-
* @param {*} [value=_.identity] The value to convert to an iteratee.
|
|
747
|
-
* @returns {Function} Returns the iteratee.
|
|
748
|
-
*/
|
|
749
|
-
function baseIteratee(func) {
|
|
750
|
-
if (typeof func == 'function') {
|
|
751
|
-
return func;
|
|
752
|
-
}
|
|
753
|
-
if (func == null) {
|
|
754
|
-
return identity;
|
|
755
|
-
}
|
|
756
|
-
return (typeof func == 'object' ? baseMatches : baseProperty)(func);
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
/**
|
|
760
|
-
* The base implementation of `_.lt` which doesn't coerce arguments.
|
|
761
|
-
*
|
|
762
|
-
* @private
|
|
763
|
-
* @param {*} value The value to compare.
|
|
764
|
-
* @param {*} other The other value to compare.
|
|
765
|
-
* @returns {boolean} Returns `true` if `value` is less than `other`,
|
|
766
|
-
* else `false`.
|
|
767
|
-
*/
|
|
768
|
-
function baseLt(value, other) {
|
|
769
|
-
return value < other;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
/**
|
|
773
|
-
* The base implementation of `_.map` without support for iteratee shorthands.
|
|
774
|
-
*
|
|
775
|
-
* @private
|
|
776
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
777
|
-
* @param {Function} iteratee The function invoked per iteration.
|
|
778
|
-
* @returns {Array} Returns the new mapped array.
|
|
779
|
-
*/
|
|
780
|
-
function baseMap(collection, iteratee) {
|
|
781
|
-
var index = -1,
|
|
782
|
-
result = isArrayLike(collection) ? Array(collection.length) : [];
|
|
783
|
-
|
|
784
|
-
baseEach(collection, function(value, key, collection) {
|
|
785
|
-
result[++index] = iteratee(value, key, collection);
|
|
786
|
-
});
|
|
787
|
-
return result;
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
/**
|
|
791
|
-
* The base implementation of `_.matches` which doesn't clone `source`.
|
|
792
|
-
*
|
|
793
|
-
* @private
|
|
794
|
-
* @param {Object} source The object of property values to match.
|
|
795
|
-
* @returns {Function} Returns the new spec function.
|
|
796
|
-
*/
|
|
797
|
-
function baseMatches(source) {
|
|
798
|
-
var props = nativeKeys(source);
|
|
799
|
-
return function(object) {
|
|
800
|
-
var length = props.length;
|
|
801
|
-
if (object == null) {
|
|
802
|
-
return !length;
|
|
803
|
-
}
|
|
804
|
-
object = Object(object);
|
|
805
|
-
while (length--) {
|
|
806
|
-
var key = props[length];
|
|
807
|
-
if (!(key in object &&
|
|
808
|
-
baseIsEqual(source[key], object[key], COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG)
|
|
809
|
-
)) {
|
|
810
|
-
return false;
|
|
811
|
-
}
|
|
812
|
-
}
|
|
813
|
-
return true;
|
|
814
|
-
};
|
|
815
|
-
}
|
|
816
|
-
|
|
817
|
-
/**
|
|
818
|
-
* The base implementation of `_.pick` without support for individual
|
|
819
|
-
* property identifiers.
|
|
820
|
-
*
|
|
821
|
-
* @private
|
|
822
|
-
* @param {Object} object The source object.
|
|
823
|
-
* @param {string[]} paths The property paths to pick.
|
|
824
|
-
* @returns {Object} Returns the new object.
|
|
825
|
-
*/
|
|
826
|
-
function basePick(object, props) {
|
|
827
|
-
object = Object(object);
|
|
828
|
-
return reduce(props, function(result, key) {
|
|
829
|
-
if (key in object) {
|
|
830
|
-
result[key] = object[key];
|
|
831
|
-
}
|
|
832
|
-
return result;
|
|
833
|
-
}, {});
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
/**
|
|
837
|
-
* The base implementation of `_.rest` which doesn't validate or coerce arguments.
|
|
838
|
-
*
|
|
839
|
-
* @private
|
|
840
|
-
* @param {Function} func The function to apply a rest parameter to.
|
|
841
|
-
* @param {number} [start=func.length-1] The start position of the rest parameter.
|
|
842
|
-
* @returns {Function} Returns the new function.
|
|
843
|
-
*/
|
|
844
|
-
function baseRest(func, start) {
|
|
845
|
-
return setToString(overRest(func, start, identity), func + '');
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
/**
|
|
849
|
-
* The base implementation of `_.slice` without an iteratee call guard.
|
|
850
|
-
*
|
|
851
|
-
* @private
|
|
852
|
-
* @param {Array} array The array to slice.
|
|
853
|
-
* @param {number} [start=0] The start position.
|
|
854
|
-
* @param {number} [end=array.length] The end position.
|
|
855
|
-
* @returns {Array} Returns the slice of `array`.
|
|
856
|
-
*/
|
|
857
|
-
function baseSlice(array, start, end) {
|
|
858
|
-
var index = -1,
|
|
859
|
-
length = array.length;
|
|
860
|
-
|
|
861
|
-
if (start < 0) {
|
|
862
|
-
start = -start > length ? 0 : (length + start);
|
|
863
|
-
}
|
|
864
|
-
end = end > length ? length : end;
|
|
865
|
-
if (end < 0) {
|
|
866
|
-
end += length;
|
|
867
|
-
}
|
|
868
|
-
length = start > end ? 0 : ((end - start) >>> 0);
|
|
869
|
-
start >>>= 0;
|
|
870
|
-
|
|
871
|
-
var result = Array(length);
|
|
872
|
-
while (++index < length) {
|
|
873
|
-
result[index] = array[index + start];
|
|
874
|
-
}
|
|
875
|
-
return result;
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
/**
|
|
879
|
-
* Copies the values of `source` to `array`.
|
|
880
|
-
*
|
|
881
|
-
* @private
|
|
882
|
-
* @param {Array} source The array to copy values from.
|
|
883
|
-
* @param {Array} [array=[]] The array to copy values to.
|
|
884
|
-
* @returns {Array} Returns `array`.
|
|
885
|
-
*/
|
|
886
|
-
function copyArray(source) {
|
|
887
|
-
return baseSlice(source, 0, source.length);
|
|
888
|
-
}
|
|
889
|
-
|
|
890
|
-
/**
|
|
891
|
-
* The base implementation of `_.some` without support for iteratee shorthands.
|
|
892
|
-
*
|
|
893
|
-
* @private
|
|
894
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
895
|
-
* @param {Function} predicate The function invoked per iteration.
|
|
896
|
-
* @returns {boolean} Returns `true` if any element passes the predicate check,
|
|
897
|
-
* else `false`.
|
|
898
|
-
*/
|
|
899
|
-
function baseSome(collection, predicate) {
|
|
900
|
-
var result;
|
|
901
|
-
|
|
902
|
-
baseEach(collection, function(value, index, collection) {
|
|
903
|
-
result = predicate(value, index, collection);
|
|
904
|
-
return !result;
|
|
905
|
-
});
|
|
906
|
-
return !!result;
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
/**
|
|
910
|
-
* The base implementation of `wrapperValue` which returns the result of
|
|
911
|
-
* performing a sequence of actions on the unwrapped `value`, where each
|
|
912
|
-
* successive action is supplied the return value of the previous.
|
|
913
|
-
*
|
|
914
|
-
* @private
|
|
915
|
-
* @param {*} value The unwrapped value.
|
|
916
|
-
* @param {Array} actions Actions to perform to resolve the unwrapped value.
|
|
917
|
-
* @returns {*} Returns the resolved value.
|
|
918
|
-
*/
|
|
919
|
-
function baseWrapperValue(value, actions) {
|
|
920
|
-
var result = value;
|
|
921
|
-
return reduce(actions, function(result, action) {
|
|
922
|
-
return action.func.apply(action.thisArg, arrayPush([result], action.args));
|
|
923
|
-
}, result);
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
/**
|
|
927
|
-
* Compares values to sort them in ascending order.
|
|
928
|
-
*
|
|
929
|
-
* @private
|
|
930
|
-
* @param {*} value The value to compare.
|
|
931
|
-
* @param {*} other The other value to compare.
|
|
932
|
-
* @returns {number} Returns the sort order indicator for `value`.
|
|
933
|
-
*/
|
|
934
|
-
function compareAscending(value, other) {
|
|
935
|
-
if (value !== other) {
|
|
936
|
-
var valIsDefined = value !== undefined,
|
|
937
|
-
valIsNull = value === null,
|
|
938
|
-
valIsReflexive = value === value,
|
|
939
|
-
valIsSymbol = false;
|
|
940
|
-
|
|
941
|
-
var othIsDefined = other !== undefined,
|
|
942
|
-
othIsNull = other === null,
|
|
943
|
-
othIsReflexive = other === other,
|
|
944
|
-
othIsSymbol = false;
|
|
945
|
-
|
|
946
|
-
if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) ||
|
|
947
|
-
(valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) ||
|
|
948
|
-
(valIsNull && othIsDefined && othIsReflexive) ||
|
|
949
|
-
(!valIsDefined && othIsReflexive) ||
|
|
950
|
-
!valIsReflexive) {
|
|
951
|
-
return 1;
|
|
952
|
-
}
|
|
953
|
-
if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) ||
|
|
954
|
-
(othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) ||
|
|
955
|
-
(othIsNull && valIsDefined && valIsReflexive) ||
|
|
956
|
-
(!othIsDefined && valIsReflexive) ||
|
|
957
|
-
!othIsReflexive) {
|
|
958
|
-
return -1;
|
|
959
|
-
}
|
|
960
|
-
}
|
|
961
|
-
return 0;
|
|
962
|
-
}
|
|
963
|
-
|
|
964
|
-
/**
|
|
965
|
-
* Copies properties of `source` to `object`.
|
|
966
|
-
*
|
|
967
|
-
* @private
|
|
968
|
-
* @param {Object} source The object to copy properties from.
|
|
969
|
-
* @param {Array} props The property identifiers to copy.
|
|
970
|
-
* @param {Object} [object={}] The object to copy properties to.
|
|
971
|
-
* @param {Function} [customizer] The function to customize copied values.
|
|
972
|
-
* @returns {Object} Returns `object`.
|
|
973
|
-
*/
|
|
974
|
-
function copyObject(source, props, object, customizer) {
|
|
975
|
-
var isNew = !object;
|
|
976
|
-
object || (object = {});
|
|
977
|
-
|
|
978
|
-
var index = -1,
|
|
979
|
-
length = props.length;
|
|
980
|
-
|
|
981
|
-
while (++index < length) {
|
|
982
|
-
var key = props[index];
|
|
983
|
-
|
|
984
|
-
var newValue = customizer
|
|
985
|
-
? customizer(object[key], source[key], key, object, source)
|
|
986
|
-
: undefined;
|
|
987
|
-
|
|
988
|
-
if (newValue === undefined) {
|
|
989
|
-
newValue = source[key];
|
|
990
|
-
}
|
|
991
|
-
if (isNew) {
|
|
992
|
-
baseAssignValue(object, key, newValue);
|
|
993
|
-
} else {
|
|
994
|
-
assignValue(object, key, newValue);
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
return object;
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
|
-
/**
|
|
1001
|
-
* Creates a function like `_.assign`.
|
|
1002
|
-
*
|
|
1003
|
-
* @private
|
|
1004
|
-
* @param {Function} assigner The function to assign values.
|
|
1005
|
-
* @returns {Function} Returns the new assigner function.
|
|
1006
|
-
*/
|
|
1007
|
-
function createAssigner(assigner) {
|
|
1008
|
-
return baseRest(function(object, sources) {
|
|
1009
|
-
var index = -1,
|
|
1010
|
-
length = sources.length,
|
|
1011
|
-
customizer = length > 1 ? sources[length - 1] : undefined;
|
|
1012
|
-
|
|
1013
|
-
customizer = (assigner.length > 3 && typeof customizer == 'function')
|
|
1014
|
-
? (length--, customizer)
|
|
1015
|
-
: undefined;
|
|
1016
|
-
|
|
1017
|
-
object = Object(object);
|
|
1018
|
-
while (++index < length) {
|
|
1019
|
-
var source = sources[index];
|
|
1020
|
-
if (source) {
|
|
1021
|
-
assigner(object, source, index, customizer);
|
|
1022
|
-
}
|
|
1023
|
-
}
|
|
1024
|
-
return object;
|
|
1025
|
-
});
|
|
1026
|
-
}
|
|
1027
|
-
|
|
1028
|
-
/**
|
|
1029
|
-
* Creates a `baseEach` or `baseEachRight` function.
|
|
1030
|
-
*
|
|
1031
|
-
* @private
|
|
1032
|
-
* @param {Function} eachFunc The function to iterate over a collection.
|
|
1033
|
-
* @param {boolean} [fromRight] Specify iterating from right to left.
|
|
1034
|
-
* @returns {Function} Returns the new base function.
|
|
1035
|
-
*/
|
|
1036
|
-
function createBaseEach(eachFunc, fromRight) {
|
|
1037
|
-
return function(collection, iteratee) {
|
|
1038
|
-
if (collection == null) {
|
|
1039
|
-
return collection;
|
|
1040
|
-
}
|
|
1041
|
-
if (!isArrayLike(collection)) {
|
|
1042
|
-
return eachFunc(collection, iteratee);
|
|
1043
|
-
}
|
|
1044
|
-
var length = collection.length,
|
|
1045
|
-
index = fromRight ? length : -1,
|
|
1046
|
-
iterable = Object(collection);
|
|
1047
|
-
|
|
1048
|
-
while ((fromRight ? index-- : ++index < length)) {
|
|
1049
|
-
if (iteratee(iterable[index], index, iterable) === false) {
|
|
1050
|
-
break;
|
|
1051
|
-
}
|
|
1052
|
-
}
|
|
1053
|
-
return collection;
|
|
1054
|
-
};
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
/**
|
|
1058
|
-
* Creates a base function for methods like `_.forIn` and `_.forOwn`.
|
|
1059
|
-
*
|
|
1060
|
-
* @private
|
|
1061
|
-
* @param {boolean} [fromRight] Specify iterating from right to left.
|
|
1062
|
-
* @returns {Function} Returns the new base function.
|
|
1063
|
-
*/
|
|
1064
|
-
function createBaseFor(fromRight) {
|
|
1065
|
-
return function(object, iteratee, keysFunc) {
|
|
1066
|
-
var index = -1,
|
|
1067
|
-
iterable = Object(object),
|
|
1068
|
-
props = keysFunc(object),
|
|
1069
|
-
length = props.length;
|
|
1070
|
-
|
|
1071
|
-
while (length--) {
|
|
1072
|
-
var key = props[fromRight ? length : ++index];
|
|
1073
|
-
if (iteratee(iterable[key], key, iterable) === false) {
|
|
1074
|
-
break;
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
return object;
|
|
1078
|
-
};
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
/**
|
|
1082
|
-
* Creates a function that produces an instance of `Ctor` regardless of
|
|
1083
|
-
* whether it was invoked as part of a `new` expression or by `call` or `apply`.
|
|
1084
|
-
*
|
|
1085
|
-
* @private
|
|
1086
|
-
* @param {Function} Ctor The constructor to wrap.
|
|
1087
|
-
* @returns {Function} Returns the new wrapped function.
|
|
1088
|
-
*/
|
|
1089
|
-
function createCtor(Ctor) {
|
|
1090
|
-
return function() {
|
|
1091
|
-
// Use a `switch` statement to work with class constructors. See
|
|
1092
|
-
// http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist
|
|
1093
|
-
// for more details.
|
|
1094
|
-
var args = arguments;
|
|
1095
|
-
var thisBinding = baseCreate(Ctor.prototype),
|
|
1096
|
-
result = Ctor.apply(thisBinding, args);
|
|
1097
|
-
|
|
1098
|
-
// Mimic the constructor's `return` behavior.
|
|
1099
|
-
// See https://es5.github.io/#x13.2.2 for more details.
|
|
1100
|
-
return isObject(result) ? result : thisBinding;
|
|
1101
|
-
};
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
/**
|
|
1105
|
-
* Creates a `_.find` or `_.findLast` function.
|
|
1106
|
-
*
|
|
1107
|
-
* @private
|
|
1108
|
-
* @param {Function} findIndexFunc The function to find the collection index.
|
|
1109
|
-
* @returns {Function} Returns the new find function.
|
|
1110
|
-
*/
|
|
1111
|
-
function createFind(findIndexFunc) {
|
|
1112
|
-
return function(collection, predicate, fromIndex) {
|
|
1113
|
-
var iterable = Object(collection);
|
|
1114
|
-
if (!isArrayLike(collection)) {
|
|
1115
|
-
var iteratee = baseIteratee(predicate, 3);
|
|
1116
|
-
collection = keys(collection);
|
|
1117
|
-
predicate = function(key) { return iteratee(iterable[key], key, iterable); };
|
|
1118
|
-
}
|
|
1119
|
-
var index = findIndexFunc(collection, predicate, fromIndex);
|
|
1120
|
-
return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined;
|
|
1121
|
-
};
|
|
1122
|
-
}
|
|
1123
|
-
|
|
1124
|
-
/**
|
|
1125
|
-
* Creates a function that wraps `func` to invoke it with the `this` binding
|
|
1126
|
-
* of `thisArg` and `partials` prepended to the arguments it receives.
|
|
1127
|
-
*
|
|
1128
|
-
* @private
|
|
1129
|
-
* @param {Function} func The function to wrap.
|
|
1130
|
-
* @param {number} bitmask The bitmask flags. See `createWrap` for more details.
|
|
1131
|
-
* @param {*} thisArg The `this` binding of `func`.
|
|
1132
|
-
* @param {Array} partials The arguments to prepend to those provided to
|
|
1133
|
-
* the new function.
|
|
1134
|
-
* @returns {Function} Returns the new wrapped function.
|
|
1135
|
-
*/
|
|
1136
|
-
function createPartial(func, bitmask, thisArg, partials) {
|
|
1137
|
-
if (typeof func != 'function') {
|
|
1138
|
-
throw new TypeError(FUNC_ERROR_TEXT);
|
|
1139
|
-
}
|
|
1140
|
-
var isBind = bitmask & WRAP_BIND_FLAG,
|
|
1141
|
-
Ctor = createCtor(func);
|
|
1142
|
-
|
|
1143
|
-
function wrapper() {
|
|
1144
|
-
var argsIndex = -1,
|
|
1145
|
-
argsLength = arguments.length,
|
|
1146
|
-
leftIndex = -1,
|
|
1147
|
-
leftLength = partials.length,
|
|
1148
|
-
args = Array(leftLength + argsLength),
|
|
1149
|
-
fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;
|
|
1150
|
-
|
|
1151
|
-
while (++leftIndex < leftLength) {
|
|
1152
|
-
args[leftIndex] = partials[leftIndex];
|
|
1153
|
-
}
|
|
1154
|
-
while (argsLength--) {
|
|
1155
|
-
args[leftIndex++] = arguments[++argsIndex];
|
|
1156
|
-
}
|
|
1157
|
-
return fn.apply(isBind ? thisArg : this, args);
|
|
1158
|
-
}
|
|
1159
|
-
return wrapper;
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
|
-
/**
|
|
1163
|
-
* Used by `_.defaults` to customize its `_.assignIn` use to assign properties
|
|
1164
|
-
* of source objects to the destination object for all destination properties
|
|
1165
|
-
* that resolve to `undefined`.
|
|
1166
|
-
*
|
|
1167
|
-
* @private
|
|
1168
|
-
* @param {*} objValue The destination value.
|
|
1169
|
-
* @param {*} srcValue The source value.
|
|
1170
|
-
* @param {string} key The key of the property to assign.
|
|
1171
|
-
* @param {Object} object The parent object of `objValue`.
|
|
1172
|
-
* @returns {*} Returns the value to assign.
|
|
1173
|
-
*/
|
|
1174
|
-
function customDefaultsAssignIn(objValue, srcValue, key, object) {
|
|
1175
|
-
if (objValue === undefined ||
|
|
1176
|
-
(eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) {
|
|
1177
|
-
return srcValue;
|
|
1178
|
-
}
|
|
1179
|
-
return objValue;
|
|
1180
|
-
}
|
|
1181
|
-
|
|
1182
|
-
/**
|
|
1183
|
-
* A specialized version of `baseIsEqualDeep` for arrays with support for
|
|
1184
|
-
* partial deep comparisons.
|
|
1185
|
-
*
|
|
1186
|
-
* @private
|
|
1187
|
-
* @param {Array} array The array to compare.
|
|
1188
|
-
* @param {Array} other The other array to compare.
|
|
1189
|
-
* @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.
|
|
1190
|
-
* @param {Function} customizer The function to customize comparisons.
|
|
1191
|
-
* @param {Function} equalFunc The function to determine equivalents of values.
|
|
1192
|
-
* @param {Object} stack Tracks traversed `array` and `other` objects.
|
|
1193
|
-
* @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.
|
|
1194
|
-
*/
|
|
1195
|
-
function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
|
|
1196
|
-
var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
|
|
1197
|
-
arrLength = array.length,
|
|
1198
|
-
othLength = other.length;
|
|
1199
|
-
|
|
1200
|
-
if (arrLength != othLength && !(isPartial && othLength > arrLength)) {
|
|
1201
|
-
return false;
|
|
1202
|
-
}
|
|
1203
|
-
var index = -1,
|
|
1204
|
-
result = true,
|
|
1205
|
-
seen = (bitmask & COMPARE_UNORDERED_FLAG) ? [] : undefined;
|
|
1206
|
-
|
|
1207
|
-
// Ignore non-index properties.
|
|
1208
|
-
while (++index < arrLength) {
|
|
1209
|
-
var arrValue = array[index],
|
|
1210
|
-
othValue = other[index];
|
|
1211
|
-
|
|
1212
|
-
var compared;
|
|
1213
|
-
if (compared !== undefined) {
|
|
1214
|
-
if (compared) {
|
|
1215
|
-
continue;
|
|
1216
|
-
}
|
|
1217
|
-
result = false;
|
|
1218
|
-
break;
|
|
1219
|
-
}
|
|
1220
|
-
// Recursively compare arrays (susceptible to call stack limits).
|
|
1221
|
-
if (seen) {
|
|
1222
|
-
if (!baseSome(other, function(othValue, othIndex) {
|
|
1223
|
-
if (!indexOf(seen, othIndex) &&
|
|
1224
|
-
(arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
|
|
1225
|
-
return seen.push(othIndex);
|
|
1226
|
-
}
|
|
1227
|
-
})) {
|
|
1228
|
-
result = false;
|
|
1229
|
-
break;
|
|
1230
|
-
}
|
|
1231
|
-
} else if (!(
|
|
1232
|
-
arrValue === othValue ||
|
|
1233
|
-
equalFunc(arrValue, othValue, bitmask, customizer, stack)
|
|
1234
|
-
)) {
|
|
1235
|
-
result = false;
|
|
1236
|
-
break;
|
|
1237
|
-
}
|
|
1238
|
-
}
|
|
1239
|
-
return result;
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
|
-
/**
|
|
1243
|
-
* A specialized version of `baseIsEqualDeep` for comparing objects of
|
|
1244
|
-
* the same `toStringTag`.
|
|
1245
|
-
*
|
|
1246
|
-
* **Note:** This function only supports comparing values with tags of
|
|
1247
|
-
* `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.
|
|
1248
|
-
*
|
|
1249
|
-
* @private
|
|
1250
|
-
* @param {Object} object The object to compare.
|
|
1251
|
-
* @param {Object} other The other object to compare.
|
|
1252
|
-
* @param {string} tag The `toStringTag` of the objects to compare.
|
|
1253
|
-
* @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.
|
|
1254
|
-
* @param {Function} customizer The function to customize comparisons.
|
|
1255
|
-
* @param {Function} equalFunc The function to determine equivalents of values.
|
|
1256
|
-
* @param {Object} stack Tracks traversed `object` and `other` objects.
|
|
1257
|
-
* @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
|
|
1258
|
-
*/
|
|
1259
|
-
function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {
|
|
1260
|
-
switch (tag) {
|
|
1261
|
-
|
|
1262
|
-
case boolTag:
|
|
1263
|
-
case dateTag:
|
|
1264
|
-
case numberTag:
|
|
1265
|
-
// Coerce booleans to `1` or `0` and dates to milliseconds.
|
|
1266
|
-
// Invalid dates are coerced to `NaN`.
|
|
1267
|
-
return eq(+object, +other);
|
|
1268
|
-
|
|
1269
|
-
case errorTag:
|
|
1270
|
-
return object.name == other.name && object.message == other.message;
|
|
1271
|
-
|
|
1272
|
-
case regexpTag:
|
|
1273
|
-
case stringTag:
|
|
1274
|
-
// Coerce regexes to strings and treat strings, primitives and objects,
|
|
1275
|
-
// as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring
|
|
1276
|
-
// for more details.
|
|
1277
|
-
return object == (other + '');
|
|
1278
|
-
|
|
1279
|
-
}
|
|
1280
|
-
return false;
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
/**
|
|
1284
|
-
* A specialized version of `baseIsEqualDeep` for objects with support for
|
|
1285
|
-
* partial deep comparisons.
|
|
1286
|
-
*
|
|
1287
|
-
* @private
|
|
1288
|
-
* @param {Object} object The object to compare.
|
|
1289
|
-
* @param {Object} other The other object to compare.
|
|
1290
|
-
* @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.
|
|
1291
|
-
* @param {Function} customizer The function to customize comparisons.
|
|
1292
|
-
* @param {Function} equalFunc The function to determine equivalents of values.
|
|
1293
|
-
* @param {Object} stack Tracks traversed `object` and `other` objects.
|
|
1294
|
-
* @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
|
|
1295
|
-
*/
|
|
1296
|
-
function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
|
|
1297
|
-
var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
|
|
1298
|
-
objProps = keys(object),
|
|
1299
|
-
objLength = objProps.length,
|
|
1300
|
-
othProps = keys(other),
|
|
1301
|
-
othLength = othProps.length;
|
|
1302
|
-
|
|
1303
|
-
if (objLength != othLength && !isPartial) {
|
|
1304
|
-
return false;
|
|
1305
|
-
}
|
|
1306
|
-
var index = objLength;
|
|
1307
|
-
while (index--) {
|
|
1308
|
-
var key = objProps[index];
|
|
1309
|
-
if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {
|
|
1310
|
-
return false;
|
|
1311
|
-
}
|
|
1312
|
-
}
|
|
1313
|
-
var result = true;
|
|
1314
|
-
|
|
1315
|
-
var skipCtor = isPartial;
|
|
1316
|
-
while (++index < objLength) {
|
|
1317
|
-
key = objProps[index];
|
|
1318
|
-
var objValue = object[key],
|
|
1319
|
-
othValue = other[key];
|
|
1320
|
-
|
|
1321
|
-
var compared;
|
|
1322
|
-
// Recursively compare objects (susceptible to call stack limits).
|
|
1323
|
-
if (!(compared === undefined
|
|
1324
|
-
? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack))
|
|
1325
|
-
: compared
|
|
1326
|
-
)) {
|
|
1327
|
-
result = false;
|
|
1328
|
-
break;
|
|
1329
|
-
}
|
|
1330
|
-
skipCtor || (skipCtor = key == 'constructor');
|
|
1331
|
-
}
|
|
1332
|
-
if (result && !skipCtor) {
|
|
1333
|
-
var objCtor = object.constructor,
|
|
1334
|
-
othCtor = other.constructor;
|
|
1335
|
-
|
|
1336
|
-
// Non `Object` object instances with different constructors are not equal.
|
|
1337
|
-
if (objCtor != othCtor &&
|
|
1338
|
-
('constructor' in object && 'constructor' in other) &&
|
|
1339
|
-
!(typeof objCtor == 'function' && objCtor instanceof objCtor &&
|
|
1340
|
-
typeof othCtor == 'function' && othCtor instanceof othCtor)) {
|
|
1341
|
-
result = false;
|
|
1342
|
-
}
|
|
1343
|
-
}
|
|
1344
|
-
return result;
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
/**
|
|
1348
|
-
* A specialized version of `baseRest` which flattens the rest array.
|
|
1349
|
-
*
|
|
1350
|
-
* @private
|
|
1351
|
-
* @param {Function} func The function to apply a rest parameter to.
|
|
1352
|
-
* @returns {Function} Returns the new function.
|
|
1353
|
-
*/
|
|
1354
|
-
function flatRest(func) {
|
|
1355
|
-
return setToString(overRest(func, undefined, flatten), func + '');
|
|
1356
|
-
}
|
|
1357
|
-
|
|
1358
|
-
/**
|
|
1359
|
-
* Checks if `value` is a flattenable `arguments` object or array.
|
|
1360
|
-
*
|
|
1361
|
-
* @private
|
|
1362
|
-
* @param {*} value The value to check.
|
|
1363
|
-
* @returns {boolean} Returns `true` if `value` is flattenable, else `false`.
|
|
1364
|
-
*/
|
|
1365
|
-
function isFlattenable(value) {
|
|
1366
|
-
return isArray(value) || isArguments(value);
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
/**
|
|
1370
|
-
* This function is like
|
|
1371
|
-
* [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)
|
|
1372
|
-
* except that it includes inherited enumerable properties.
|
|
1373
|
-
*
|
|
1374
|
-
* @private
|
|
1375
|
-
* @param {Object} object The object to query.
|
|
1376
|
-
* @returns {Array} Returns the array of property names.
|
|
1377
|
-
*/
|
|
1378
|
-
function nativeKeysIn(object) {
|
|
1379
|
-
var result = [];
|
|
1380
|
-
if (object != null) {
|
|
1381
|
-
for (var key in Object(object)) {
|
|
1382
|
-
result.push(key);
|
|
1383
|
-
}
|
|
1384
|
-
}
|
|
1385
|
-
return result;
|
|
1386
|
-
}
|
|
1387
|
-
|
|
1388
|
-
/**
|
|
1389
|
-
* Converts `value` to a string using `Object.prototype.toString`.
|
|
1390
|
-
*
|
|
1391
|
-
* @private
|
|
1392
|
-
* @param {*} value The value to convert.
|
|
1393
|
-
* @returns {string} Returns the converted string.
|
|
1394
|
-
*/
|
|
1395
|
-
function objectToString(value) {
|
|
1396
|
-
return nativeObjectToString.call(value);
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1399
|
-
/**
|
|
1400
|
-
* A specialized version of `baseRest` which transforms the rest array.
|
|
1401
|
-
*
|
|
1402
|
-
* @private
|
|
1403
|
-
* @param {Function} func The function to apply a rest parameter to.
|
|
1404
|
-
* @param {number} [start=func.length-1] The start position of the rest parameter.
|
|
1405
|
-
* @param {Function} transform The rest array transform.
|
|
1406
|
-
* @returns {Function} Returns the new function.
|
|
1407
|
-
*/
|
|
1408
|
-
function overRest(func, start, transform) {
|
|
1409
|
-
start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
|
|
1410
|
-
return function() {
|
|
1411
|
-
var args = arguments,
|
|
1412
|
-
index = -1,
|
|
1413
|
-
length = nativeMax(args.length - start, 0),
|
|
1414
|
-
array = Array(length);
|
|
1415
|
-
|
|
1416
|
-
while (++index < length) {
|
|
1417
|
-
array[index] = args[start + index];
|
|
1418
|
-
}
|
|
1419
|
-
index = -1;
|
|
1420
|
-
var otherArgs = Array(start + 1);
|
|
1421
|
-
while (++index < start) {
|
|
1422
|
-
otherArgs[index] = args[index];
|
|
1423
|
-
}
|
|
1424
|
-
otherArgs[start] = transform(array);
|
|
1425
|
-
return func.apply(this, otherArgs);
|
|
1426
|
-
};
|
|
1427
|
-
}
|
|
1428
|
-
|
|
1429
|
-
/**
|
|
1430
|
-
* Sets the `toString` method of `func` to return `string`.
|
|
1431
|
-
*
|
|
1432
|
-
* @private
|
|
1433
|
-
* @param {Function} func The function to modify.
|
|
1434
|
-
* @param {Function} string The `toString` result.
|
|
1435
|
-
* @returns {Function} Returns `func`.
|
|
1436
|
-
*/
|
|
1437
|
-
var setToString = identity;
|
|
1438
|
-
|
|
1439
|
-
/*------------------------------------------------------------------------*/
|
|
1440
|
-
|
|
1441
|
-
/**
|
|
1442
|
-
* Creates an array with all falsey values removed. The values `false`, `null`,
|
|
1443
|
-
* `0`, `""`, `undefined`, and `NaN` are falsey.
|
|
1444
|
-
*
|
|
1445
|
-
* @static
|
|
1446
|
-
* @memberOf _
|
|
1447
|
-
* @since 0.1.0
|
|
1448
|
-
* @category Array
|
|
1449
|
-
* @param {Array} array The array to compact.
|
|
1450
|
-
* @returns {Array} Returns the new array of filtered values.
|
|
1451
|
-
* @example
|
|
1452
|
-
*
|
|
1453
|
-
* _.compact([0, 1, false, 2, '', 3]);
|
|
1454
|
-
* // => [1, 2, 3]
|
|
1455
|
-
*/
|
|
1456
|
-
function compact(array) {
|
|
1457
|
-
return baseFilter(array, Boolean);
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
|
-
/**
|
|
1461
|
-
* Creates a new array concatenating `array` with any additional arrays
|
|
1462
|
-
* and/or values.
|
|
1463
|
-
*
|
|
1464
|
-
* @static
|
|
1465
|
-
* @memberOf _
|
|
1466
|
-
* @since 4.0.0
|
|
1467
|
-
* @category Array
|
|
1468
|
-
* @param {Array} array The array to concatenate.
|
|
1469
|
-
* @param {...*} [values] The values to concatenate.
|
|
1470
|
-
* @returns {Array} Returns the new concatenated array.
|
|
1471
|
-
* @example
|
|
1472
|
-
*
|
|
1473
|
-
* var array = [1];
|
|
1474
|
-
* var other = _.concat(array, 2, [3], [[4]]);
|
|
1475
|
-
*
|
|
1476
|
-
* console.log(other);
|
|
1477
|
-
* // => [1, 2, 3, [4]]
|
|
1478
|
-
*
|
|
1479
|
-
* console.log(array);
|
|
1480
|
-
* // => [1]
|
|
1481
|
-
*/
|
|
1482
|
-
function concat() {
|
|
1483
|
-
var length = arguments.length;
|
|
1484
|
-
if (!length) {
|
|
1485
|
-
return [];
|
|
1486
|
-
}
|
|
1487
|
-
var args = Array(length - 1),
|
|
1488
|
-
array = arguments[0],
|
|
1489
|
-
index = length;
|
|
1490
|
-
|
|
1491
|
-
while (index--) {
|
|
1492
|
-
args[index - 1] = arguments[index];
|
|
1493
|
-
}
|
|
1494
|
-
return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1));
|
|
1495
|
-
}
|
|
1496
|
-
|
|
1497
|
-
/**
|
|
1498
|
-
* This method is like `_.find` except that it returns the index of the first
|
|
1499
|
-
* element `predicate` returns truthy for instead of the element itself.
|
|
1500
|
-
*
|
|
1501
|
-
* @static
|
|
1502
|
-
* @memberOf _
|
|
1503
|
-
* @since 1.1.0
|
|
1504
|
-
* @category Array
|
|
1505
|
-
* @param {Array} array The array to inspect.
|
|
1506
|
-
* @param {Function} [predicate=_.identity] The function invoked per iteration.
|
|
1507
|
-
* @param {number} [fromIndex=0] The index to search from.
|
|
1508
|
-
* @returns {number} Returns the index of the found element, else `-1`.
|
|
1509
|
-
* @example
|
|
1510
|
-
*
|
|
1511
|
-
* var users = [
|
|
1512
|
-
* { 'user': 'barney', 'active': false },
|
|
1513
|
-
* { 'user': 'fred', 'active': false },
|
|
1514
|
-
* { 'user': 'pebbles', 'active': true }
|
|
1515
|
-
* ];
|
|
1516
|
-
*
|
|
1517
|
-
* _.findIndex(users, function(o) { return o.user == 'barney'; });
|
|
1518
|
-
* // => 0
|
|
1519
|
-
*
|
|
1520
|
-
* // The `_.matches` iteratee shorthand.
|
|
1521
|
-
* _.findIndex(users, { 'user': 'fred', 'active': false });
|
|
1522
|
-
* // => 1
|
|
1523
|
-
*
|
|
1524
|
-
* // The `_.matchesProperty` iteratee shorthand.
|
|
1525
|
-
* _.findIndex(users, ['active', false]);
|
|
1526
|
-
* // => 0
|
|
1527
|
-
*
|
|
1528
|
-
* // The `_.property` iteratee shorthand.
|
|
1529
|
-
* _.findIndex(users, 'active');
|
|
1530
|
-
* // => 2
|
|
1531
|
-
*/
|
|
1532
|
-
function findIndex(array, predicate, fromIndex) {
|
|
1533
|
-
var length = array == null ? 0 : array.length;
|
|
1534
|
-
if (!length) {
|
|
1535
|
-
return -1;
|
|
1536
|
-
}
|
|
1537
|
-
var index = fromIndex == null ? 0 : toInteger(fromIndex);
|
|
1538
|
-
if (index < 0) {
|
|
1539
|
-
index = nativeMax(length + index, 0);
|
|
1540
|
-
}
|
|
1541
|
-
return baseFindIndex(array, baseIteratee(predicate, 3), index);
|
|
1542
|
-
}
|
|
1543
|
-
|
|
1544
|
-
/**
|
|
1545
|
-
* Flattens `array` a single level deep.
|
|
1546
|
-
*
|
|
1547
|
-
* @static
|
|
1548
|
-
* @memberOf _
|
|
1549
|
-
* @since 0.1.0
|
|
1550
|
-
* @category Array
|
|
1551
|
-
* @param {Array} array The array to flatten.
|
|
1552
|
-
* @returns {Array} Returns the new flattened array.
|
|
1553
|
-
* @example
|
|
1554
|
-
*
|
|
1555
|
-
* _.flatten([1, [2, [3, [4]], 5]]);
|
|
1556
|
-
* // => [1, 2, [3, [4]], 5]
|
|
1557
|
-
*/
|
|
1558
|
-
function flatten(array) {
|
|
1559
|
-
var length = array == null ? 0 : array.length;
|
|
1560
|
-
return length ? baseFlatten(array, 1) : [];
|
|
1561
|
-
}
|
|
1562
|
-
|
|
1563
|
-
/**
|
|
1564
|
-
* Recursively flattens `array`.
|
|
1565
|
-
*
|
|
1566
|
-
* @static
|
|
1567
|
-
* @memberOf _
|
|
1568
|
-
* @since 3.0.0
|
|
1569
|
-
* @category Array
|
|
1570
|
-
* @param {Array} array The array to flatten.
|
|
1571
|
-
* @returns {Array} Returns the new flattened array.
|
|
1572
|
-
* @example
|
|
1573
|
-
*
|
|
1574
|
-
* _.flattenDeep([1, [2, [3, [4]], 5]]);
|
|
1575
|
-
* // => [1, 2, 3, 4, 5]
|
|
1576
|
-
*/
|
|
1577
|
-
function flattenDeep(array) {
|
|
1578
|
-
var length = array == null ? 0 : array.length;
|
|
1579
|
-
return length ? baseFlatten(array, INFINITY) : [];
|
|
1580
|
-
}
|
|
1581
|
-
|
|
1582
|
-
/**
|
|
1583
|
-
* Gets the first element of `array`.
|
|
1584
|
-
*
|
|
1585
|
-
* @static
|
|
1586
|
-
* @memberOf _
|
|
1587
|
-
* @since 0.1.0
|
|
1588
|
-
* @alias first
|
|
1589
|
-
* @category Array
|
|
1590
|
-
* @param {Array} array The array to query.
|
|
1591
|
-
* @returns {*} Returns the first element of `array`.
|
|
1592
|
-
* @example
|
|
1593
|
-
*
|
|
1594
|
-
* _.head([1, 2, 3]);
|
|
1595
|
-
* // => 1
|
|
1596
|
-
*
|
|
1597
|
-
* _.head([]);
|
|
1598
|
-
* // => undefined
|
|
1599
|
-
*/
|
|
1600
|
-
function head(array) {
|
|
1601
|
-
return (array && array.length) ? array[0] : undefined;
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
|
-
/**
|
|
1605
|
-
* Gets the index at which the first occurrence of `value` is found in `array`
|
|
1606
|
-
* using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
|
|
1607
|
-
* for equality comparisons. If `fromIndex` is negative, it's used as the
|
|
1608
|
-
* offset from the end of `array`.
|
|
1609
|
-
*
|
|
1610
|
-
* @static
|
|
1611
|
-
* @memberOf _
|
|
1612
|
-
* @since 0.1.0
|
|
1613
|
-
* @category Array
|
|
1614
|
-
* @param {Array} array The array to inspect.
|
|
1615
|
-
* @param {*} value The value to search for.
|
|
1616
|
-
* @param {number} [fromIndex=0] The index to search from.
|
|
1617
|
-
* @returns {number} Returns the index of the matched value, else `-1`.
|
|
1618
|
-
* @example
|
|
1619
|
-
*
|
|
1620
|
-
* _.indexOf([1, 2, 1, 2], 2);
|
|
1621
|
-
* // => 1
|
|
1622
|
-
*
|
|
1623
|
-
* // Search from the `fromIndex`.
|
|
1624
|
-
* _.indexOf([1, 2, 1, 2], 2, 2);
|
|
1625
|
-
* // => 3
|
|
1626
|
-
*/
|
|
1627
|
-
function indexOf(array, value, fromIndex) {
|
|
1628
|
-
var length = array == null ? 0 : array.length;
|
|
1629
|
-
if (typeof fromIndex == 'number') {
|
|
1630
|
-
fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : fromIndex;
|
|
1631
|
-
} else {
|
|
1632
|
-
fromIndex = 0;
|
|
1633
|
-
}
|
|
1634
|
-
var index = (fromIndex || 0) - 1,
|
|
1635
|
-
isReflexive = value === value;
|
|
1636
|
-
|
|
1637
|
-
while (++index < length) {
|
|
1638
|
-
var other = array[index];
|
|
1639
|
-
if ((isReflexive ? other === value : other !== other)) {
|
|
1640
|
-
return index;
|
|
1641
|
-
}
|
|
1642
|
-
}
|
|
1643
|
-
return -1;
|
|
1644
|
-
}
|
|
1645
|
-
|
|
1646
|
-
/**
|
|
1647
|
-
* Gets the last element of `array`.
|
|
1648
|
-
*
|
|
1649
|
-
* @static
|
|
1650
|
-
* @memberOf _
|
|
1651
|
-
* @since 0.1.0
|
|
1652
|
-
* @category Array
|
|
1653
|
-
* @param {Array} array The array to query.
|
|
1654
|
-
* @returns {*} Returns the last element of `array`.
|
|
1655
|
-
* @example
|
|
1656
|
-
*
|
|
1657
|
-
* _.last([1, 2, 3]);
|
|
1658
|
-
* // => 3
|
|
1659
|
-
*/
|
|
1660
|
-
function last(array) {
|
|
1661
|
-
var length = array == null ? 0 : array.length;
|
|
1662
|
-
return length ? array[length - 1] : undefined;
|
|
1663
|
-
}
|
|
1664
|
-
|
|
1665
|
-
/**
|
|
1666
|
-
* Creates a slice of `array` from `start` up to, but not including, `end`.
|
|
1667
|
-
*
|
|
1668
|
-
* **Note:** This method is used instead of
|
|
1669
|
-
* [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are
|
|
1670
|
-
* returned.
|
|
1671
|
-
*
|
|
1672
|
-
* @static
|
|
1673
|
-
* @memberOf _
|
|
1674
|
-
* @since 3.0.0
|
|
1675
|
-
* @category Array
|
|
1676
|
-
* @param {Array} array The array to slice.
|
|
1677
|
-
* @param {number} [start=0] The start position.
|
|
1678
|
-
* @param {number} [end=array.length] The end position.
|
|
1679
|
-
* @returns {Array} Returns the slice of `array`.
|
|
1680
|
-
*/
|
|
1681
|
-
function slice(array, start, end) {
|
|
1682
|
-
var length = array == null ? 0 : array.length;
|
|
1683
|
-
start = start == null ? 0 : +start;
|
|
1684
|
-
end = end === undefined ? length : +end;
|
|
1685
|
-
return length ? baseSlice(array, start, end) : [];
|
|
1686
|
-
}
|
|
1687
|
-
|
|
1688
|
-
/*------------------------------------------------------------------------*/
|
|
1689
|
-
|
|
1690
|
-
/**
|
|
1691
|
-
* Creates a `lodash` wrapper instance that wraps `value` with explicit method
|
|
1692
|
-
* chain sequences enabled. The result of such sequences must be unwrapped
|
|
1693
|
-
* with `_#value`.
|
|
1694
|
-
*
|
|
1695
|
-
* @static
|
|
1696
|
-
* @memberOf _
|
|
1697
|
-
* @since 1.3.0
|
|
1698
|
-
* @category Seq
|
|
1699
|
-
* @param {*} value The value to wrap.
|
|
1700
|
-
* @returns {Object} Returns the new `lodash` wrapper instance.
|
|
1701
|
-
* @example
|
|
1702
|
-
*
|
|
1703
|
-
* var users = [
|
|
1704
|
-
* { 'user': 'barney', 'age': 36 },
|
|
1705
|
-
* { 'user': 'fred', 'age': 40 },
|
|
1706
|
-
* { 'user': 'pebbles', 'age': 1 }
|
|
1707
|
-
* ];
|
|
1708
|
-
*
|
|
1709
|
-
* var youngest = _
|
|
1710
|
-
* .chain(users)
|
|
1711
|
-
* .sortBy('age')
|
|
1712
|
-
* .map(function(o) {
|
|
1713
|
-
* return o.user + ' is ' + o.age;
|
|
1714
|
-
* })
|
|
1715
|
-
* .head()
|
|
1716
|
-
* .value();
|
|
1717
|
-
* // => 'pebbles is 1'
|
|
1718
|
-
*/
|
|
1719
|
-
function chain(value) {
|
|
1720
|
-
var result = lodash(value);
|
|
1721
|
-
result.__chain__ = true;
|
|
1722
|
-
return result;
|
|
1723
|
-
}
|
|
1724
|
-
|
|
1725
|
-
/**
|
|
1726
|
-
* This method invokes `interceptor` and returns `value`. The interceptor
|
|
1727
|
-
* is invoked with one argument; (value). The purpose of this method is to
|
|
1728
|
-
* "tap into" a method chain sequence in order to modify intermediate results.
|
|
1729
|
-
*
|
|
1730
|
-
* @static
|
|
1731
|
-
* @memberOf _
|
|
1732
|
-
* @since 0.1.0
|
|
1733
|
-
* @category Seq
|
|
1734
|
-
* @param {*} value The value to provide to `interceptor`.
|
|
1735
|
-
* @param {Function} interceptor The function to invoke.
|
|
1736
|
-
* @returns {*} Returns `value`.
|
|
1737
|
-
* @example
|
|
1738
|
-
*
|
|
1739
|
-
* _([1, 2, 3])
|
|
1740
|
-
* .tap(function(array) {
|
|
1741
|
-
* // Mutate input array.
|
|
1742
|
-
* array.pop();
|
|
1743
|
-
* })
|
|
1744
|
-
* .reverse()
|
|
1745
|
-
* .value();
|
|
1746
|
-
* // => [2, 1]
|
|
1747
|
-
*/
|
|
1748
|
-
function tap(value, interceptor) {
|
|
1749
|
-
interceptor(value);
|
|
1750
|
-
return value;
|
|
1751
|
-
}
|
|
1752
|
-
|
|
1753
|
-
/**
|
|
1754
|
-
* This method is like `_.tap` except that it returns the result of `interceptor`.
|
|
1755
|
-
* The purpose of this method is to "pass thru" values replacing intermediate
|
|
1756
|
-
* results in a method chain sequence.
|
|
1757
|
-
*
|
|
1758
|
-
* @static
|
|
1759
|
-
* @memberOf _
|
|
1760
|
-
* @since 3.0.0
|
|
1761
|
-
* @category Seq
|
|
1762
|
-
* @param {*} value The value to provide to `interceptor`.
|
|
1763
|
-
* @param {Function} interceptor The function to invoke.
|
|
1764
|
-
* @returns {*} Returns the result of `interceptor`.
|
|
1765
|
-
* @example
|
|
1766
|
-
*
|
|
1767
|
-
* _(' abc ')
|
|
1768
|
-
* .chain()
|
|
1769
|
-
* .trim()
|
|
1770
|
-
* .thru(function(value) {
|
|
1771
|
-
* return [value];
|
|
1772
|
-
* })
|
|
1773
|
-
* .value();
|
|
1774
|
-
* // => ['abc']
|
|
1775
|
-
*/
|
|
1776
|
-
function thru(value, interceptor) {
|
|
1777
|
-
return interceptor(value);
|
|
1778
|
-
}
|
|
1779
|
-
|
|
1780
|
-
/**
|
|
1781
|
-
* Creates a `lodash` wrapper instance with explicit method chain sequences enabled.
|
|
1782
|
-
*
|
|
1783
|
-
* @name chain
|
|
1784
|
-
* @memberOf _
|
|
1785
|
-
* @since 0.1.0
|
|
1786
|
-
* @category Seq
|
|
1787
|
-
* @returns {Object} Returns the new `lodash` wrapper instance.
|
|
1788
|
-
* @example
|
|
1789
|
-
*
|
|
1790
|
-
* var users = [
|
|
1791
|
-
* { 'user': 'barney', 'age': 36 },
|
|
1792
|
-
* { 'user': 'fred', 'age': 40 }
|
|
1793
|
-
* ];
|
|
1794
|
-
*
|
|
1795
|
-
* // A sequence without explicit chaining.
|
|
1796
|
-
* _(users).head();
|
|
1797
|
-
* // => { 'user': 'barney', 'age': 36 }
|
|
1798
|
-
*
|
|
1799
|
-
* // A sequence with explicit chaining.
|
|
1800
|
-
* _(users)
|
|
1801
|
-
* .chain()
|
|
1802
|
-
* .head()
|
|
1803
|
-
* .pick('user')
|
|
1804
|
-
* .value();
|
|
1805
|
-
* // => { 'user': 'barney' }
|
|
1806
|
-
*/
|
|
1807
|
-
function wrapperChain() {
|
|
1808
|
-
return chain(this);
|
|
1809
|
-
}
|
|
1810
|
-
|
|
1811
|
-
/**
|
|
1812
|
-
* Executes the chain sequence to resolve the unwrapped value.
|
|
1813
|
-
*
|
|
1814
|
-
* @name value
|
|
1815
|
-
* @memberOf _
|
|
1816
|
-
* @since 0.1.0
|
|
1817
|
-
* @alias toJSON, valueOf
|
|
1818
|
-
* @category Seq
|
|
1819
|
-
* @returns {*} Returns the resolved unwrapped value.
|
|
1820
|
-
* @example
|
|
1821
|
-
*
|
|
1822
|
-
* _([1, 2, 3]).value();
|
|
1823
|
-
* // => [1, 2, 3]
|
|
1824
|
-
*/
|
|
1825
|
-
function wrapperValue() {
|
|
1826
|
-
return baseWrapperValue(this.__wrapped__, this.__actions__);
|
|
1827
|
-
}
|
|
1828
|
-
|
|
1829
|
-
/*------------------------------------------------------------------------*/
|
|
1830
|
-
|
|
1831
|
-
/**
|
|
1832
|
-
* Checks if `predicate` returns truthy for **all** elements of `collection`.
|
|
1833
|
-
* Iteration is stopped once `predicate` returns falsey. The predicate is
|
|
1834
|
-
* invoked with three arguments: (value, index|key, collection).
|
|
1835
|
-
*
|
|
1836
|
-
* **Note:** This method returns `true` for
|
|
1837
|
-
* [empty collections](https://en.wikipedia.org/wiki/Empty_set) because
|
|
1838
|
-
* [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of
|
|
1839
|
-
* elements of empty collections.
|
|
1840
|
-
*
|
|
1841
|
-
* @static
|
|
1842
|
-
* @memberOf _
|
|
1843
|
-
* @since 0.1.0
|
|
1844
|
-
* @category Collection
|
|
1845
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
1846
|
-
* @param {Function} [predicate=_.identity] The function invoked per iteration.
|
|
1847
|
-
* @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.
|
|
1848
|
-
* @returns {boolean} Returns `true` if all elements pass the predicate check,
|
|
1849
|
-
* else `false`.
|
|
1850
|
-
* @example
|
|
1851
|
-
*
|
|
1852
|
-
* _.every([true, 1, null, 'yes'], Boolean);
|
|
1853
|
-
* // => false
|
|
1854
|
-
*
|
|
1855
|
-
* var users = [
|
|
1856
|
-
* { 'user': 'barney', 'age': 36, 'active': false },
|
|
1857
|
-
* { 'user': 'fred', 'age': 40, 'active': false }
|
|
1858
|
-
* ];
|
|
1859
|
-
*
|
|
1860
|
-
* // The `_.matches` iteratee shorthand.
|
|
1861
|
-
* _.every(users, { 'user': 'barney', 'active': false });
|
|
1862
|
-
* // => false
|
|
1863
|
-
*
|
|
1864
|
-
* // The `_.matchesProperty` iteratee shorthand.
|
|
1865
|
-
* _.every(users, ['active', false]);
|
|
1866
|
-
* // => true
|
|
1867
|
-
*
|
|
1868
|
-
* // The `_.property` iteratee shorthand.
|
|
1869
|
-
* _.every(users, 'active');
|
|
1870
|
-
* // => false
|
|
1871
|
-
*/
|
|
1872
|
-
function every(collection, predicate, guard) {
|
|
1873
|
-
predicate = guard ? undefined : predicate;
|
|
1874
|
-
return baseEvery(collection, baseIteratee(predicate));
|
|
1875
|
-
}
|
|
1876
|
-
|
|
1877
|
-
/**
|
|
1878
|
-
* Iterates over elements of `collection`, returning an array of all elements
|
|
1879
|
-
* `predicate` returns truthy for. The predicate is invoked with three
|
|
1880
|
-
* arguments: (value, index|key, collection).
|
|
1881
|
-
*
|
|
1882
|
-
* **Note:** Unlike `_.remove`, this method returns a new array.
|
|
1883
|
-
*
|
|
1884
|
-
* @static
|
|
1885
|
-
* @memberOf _
|
|
1886
|
-
* @since 0.1.0
|
|
1887
|
-
* @category Collection
|
|
1888
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
1889
|
-
* @param {Function} [predicate=_.identity] The function invoked per iteration.
|
|
1890
|
-
* @returns {Array} Returns the new filtered array.
|
|
1891
|
-
* @see _.reject
|
|
1892
|
-
* @example
|
|
1893
|
-
*
|
|
1894
|
-
* var users = [
|
|
1895
|
-
* { 'user': 'barney', 'age': 36, 'active': true },
|
|
1896
|
-
* { 'user': 'fred', 'age': 40, 'active': false }
|
|
1897
|
-
* ];
|
|
1898
|
-
*
|
|
1899
|
-
* _.filter(users, function(o) { return !o.active; });
|
|
1900
|
-
* // => objects for ['fred']
|
|
1901
|
-
*
|
|
1902
|
-
* // The `_.matches` iteratee shorthand.
|
|
1903
|
-
* _.filter(users, { 'age': 36, 'active': true });
|
|
1904
|
-
* // => objects for ['barney']
|
|
1905
|
-
*
|
|
1906
|
-
* // The `_.matchesProperty` iteratee shorthand.
|
|
1907
|
-
* _.filter(users, ['active', false]);
|
|
1908
|
-
* // => objects for ['fred']
|
|
1909
|
-
*
|
|
1910
|
-
* // The `_.property` iteratee shorthand.
|
|
1911
|
-
* _.filter(users, 'active');
|
|
1912
|
-
* // => objects for ['barney']
|
|
1913
|
-
*/
|
|
1914
|
-
function filter(collection, predicate) {
|
|
1915
|
-
return baseFilter(collection, baseIteratee(predicate));
|
|
1916
|
-
}
|
|
1917
|
-
|
|
1918
|
-
/**
|
|
1919
|
-
* Iterates over elements of `collection`, returning the first element
|
|
1920
|
-
* `predicate` returns truthy for. The predicate is invoked with three
|
|
1921
|
-
* arguments: (value, index|key, collection).
|
|
1922
|
-
*
|
|
1923
|
-
* @static
|
|
1924
|
-
* @memberOf _
|
|
1925
|
-
* @since 0.1.0
|
|
1926
|
-
* @category Collection
|
|
1927
|
-
* @param {Array|Object} collection The collection to inspect.
|
|
1928
|
-
* @param {Function} [predicate=_.identity] The function invoked per iteration.
|
|
1929
|
-
* @param {number} [fromIndex=0] The index to search from.
|
|
1930
|
-
* @returns {*} Returns the matched element, else `undefined`.
|
|
1931
|
-
* @example
|
|
1932
|
-
*
|
|
1933
|
-
* var users = [
|
|
1934
|
-
* { 'user': 'barney', 'age': 36, 'active': true },
|
|
1935
|
-
* { 'user': 'fred', 'age': 40, 'active': false },
|
|
1936
|
-
* { 'user': 'pebbles', 'age': 1, 'active': true }
|
|
1937
|
-
* ];
|
|
1938
|
-
*
|
|
1939
|
-
* _.find(users, function(o) { return o.age < 40; });
|
|
1940
|
-
* // => object for 'barney'
|
|
1941
|
-
*
|
|
1942
|
-
* // The `_.matches` iteratee shorthand.
|
|
1943
|
-
* _.find(users, { 'age': 1, 'active': true });
|
|
1944
|
-
* // => object for 'pebbles'
|
|
1945
|
-
*
|
|
1946
|
-
* // The `_.matchesProperty` iteratee shorthand.
|
|
1947
|
-
* _.find(users, ['active', false]);
|
|
1948
|
-
* // => object for 'fred'
|
|
1949
|
-
*
|
|
1950
|
-
* // The `_.property` iteratee shorthand.
|
|
1951
|
-
* _.find(users, 'active');
|
|
1952
|
-
* // => object for 'barney'
|
|
1953
|
-
*/
|
|
1954
|
-
var find = createFind(findIndex);
|
|
1955
|
-
|
|
1956
|
-
/**
|
|
1957
|
-
* Iterates over elements of `collection` and invokes `iteratee` for each element.
|
|
1958
|
-
* The iteratee is invoked with three arguments: (value, index|key, collection).
|
|
1959
|
-
* Iteratee functions may exit iteration early by explicitly returning `false`.
|
|
1960
|
-
*
|
|
1961
|
-
* **Note:** As with other "Collections" methods, objects with a "length"
|
|
1962
|
-
* property are iterated like arrays. To avoid this behavior use `_.forIn`
|
|
1963
|
-
* or `_.forOwn` for object iteration.
|
|
1964
|
-
*
|
|
1965
|
-
* @static
|
|
1966
|
-
* @memberOf _
|
|
1967
|
-
* @since 0.1.0
|
|
1968
|
-
* @alias each
|
|
1969
|
-
* @category Collection
|
|
1970
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
1971
|
-
* @param {Function} [iteratee=_.identity] The function invoked per iteration.
|
|
1972
|
-
* @returns {Array|Object} Returns `collection`.
|
|
1973
|
-
* @see _.forEachRight
|
|
1974
|
-
* @example
|
|
1975
|
-
*
|
|
1976
|
-
* _.forEach([1, 2], function(value) {
|
|
1977
|
-
* console.log(value);
|
|
1978
|
-
* });
|
|
1979
|
-
* // => Logs `1` then `2`.
|
|
1980
|
-
*
|
|
1981
|
-
* _.forEach({ 'a': 1, 'b': 2 }, function(value, key) {
|
|
1982
|
-
* console.log(key);
|
|
1983
|
-
* });
|
|
1984
|
-
* // => Logs 'a' then 'b' (iteration order is not guaranteed).
|
|
1985
|
-
*/
|
|
1986
|
-
function forEach(collection, iteratee) {
|
|
1987
|
-
return baseEach(collection, baseIteratee(iteratee));
|
|
1988
|
-
}
|
|
1989
|
-
|
|
1990
|
-
/**
|
|
1991
|
-
* Creates an array of values by running each element in `collection` thru
|
|
1992
|
-
* `iteratee`. The iteratee is invoked with three arguments:
|
|
1993
|
-
* (value, index|key, collection).
|
|
1994
|
-
*
|
|
1995
|
-
* Many lodash methods are guarded to work as iteratees for methods like
|
|
1996
|
-
* `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`.
|
|
1997
|
-
*
|
|
1998
|
-
* The guarded methods are:
|
|
1999
|
-
* `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`,
|
|
2000
|
-
* `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`,
|
|
2001
|
-
* `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`,
|
|
2002
|
-
* `template`, `trim`, `trimEnd`, `trimStart`, and `words`
|
|
2003
|
-
*
|
|
2004
|
-
* @static
|
|
2005
|
-
* @memberOf _
|
|
2006
|
-
* @since 0.1.0
|
|
2007
|
-
* @category Collection
|
|
2008
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
2009
|
-
* @param {Function} [iteratee=_.identity] The function invoked per iteration.
|
|
2010
|
-
* @returns {Array} Returns the new mapped array.
|
|
2011
|
-
* @example
|
|
2012
|
-
*
|
|
2013
|
-
* function square(n) {
|
|
2014
|
-
* return n * n;
|
|
2015
|
-
* }
|
|
2016
|
-
*
|
|
2017
|
-
* _.map([4, 8], square);
|
|
2018
|
-
* // => [16, 64]
|
|
2019
|
-
*
|
|
2020
|
-
* _.map({ 'a': 4, 'b': 8 }, square);
|
|
2021
|
-
* // => [16, 64] (iteration order is not guaranteed)
|
|
2022
|
-
*
|
|
2023
|
-
* var users = [
|
|
2024
|
-
* { 'user': 'barney' },
|
|
2025
|
-
* { 'user': 'fred' }
|
|
2026
|
-
* ];
|
|
2027
|
-
*
|
|
2028
|
-
* // The `_.property` iteratee shorthand.
|
|
2029
|
-
* _.map(users, 'user');
|
|
2030
|
-
* // => ['barney', 'fred']
|
|
2031
|
-
*/
|
|
2032
|
-
function map(collection, iteratee) {
|
|
2033
|
-
return baseMap(collection, baseIteratee(iteratee));
|
|
2034
|
-
}
|
|
2035
|
-
|
|
2036
|
-
/**
|
|
2037
|
-
* Reduces `collection` to a value which is the accumulated result of running
|
|
2038
|
-
* each element in `collection` thru `iteratee`, where each successive
|
|
2039
|
-
* invocation is supplied the return value of the previous. If `accumulator`
|
|
2040
|
-
* is not given, the first element of `collection` is used as the initial
|
|
2041
|
-
* value. The iteratee is invoked with four arguments:
|
|
2042
|
-
* (accumulator, value, index|key, collection).
|
|
2043
|
-
*
|
|
2044
|
-
* Many lodash methods are guarded to work as iteratees for methods like
|
|
2045
|
-
* `_.reduce`, `_.reduceRight`, and `_.transform`.
|
|
2046
|
-
*
|
|
2047
|
-
* The guarded methods are:
|
|
2048
|
-
* `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`,
|
|
2049
|
-
* and `sortBy`
|
|
2050
|
-
*
|
|
2051
|
-
* @static
|
|
2052
|
-
* @memberOf _
|
|
2053
|
-
* @since 0.1.0
|
|
2054
|
-
* @category Collection
|
|
2055
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
2056
|
-
* @param {Function} [iteratee=_.identity] The function invoked per iteration.
|
|
2057
|
-
* @param {*} [accumulator] The initial value.
|
|
2058
|
-
* @returns {*} Returns the accumulated value.
|
|
2059
|
-
* @see _.reduceRight
|
|
2060
|
-
* @example
|
|
2061
|
-
*
|
|
2062
|
-
* _.reduce([1, 2], function(sum, n) {
|
|
2063
|
-
* return sum + n;
|
|
2064
|
-
* }, 0);
|
|
2065
|
-
* // => 3
|
|
2066
|
-
*
|
|
2067
|
-
* _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {
|
|
2068
|
-
* (result[value] || (result[value] = [])).push(key);
|
|
2069
|
-
* return result;
|
|
2070
|
-
* }, {});
|
|
2071
|
-
* // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed)
|
|
2072
|
-
*/
|
|
2073
|
-
function reduce(collection, iteratee, accumulator) {
|
|
2074
|
-
return baseReduce(collection, baseIteratee(iteratee), accumulator, arguments.length < 3, baseEach);
|
|
2075
|
-
}
|
|
2076
|
-
|
|
2077
|
-
/**
|
|
2078
|
-
* Gets the size of `collection` by returning its length for array-like
|
|
2079
|
-
* values or the number of own enumerable string keyed properties for objects.
|
|
2080
|
-
*
|
|
2081
|
-
* @static
|
|
2082
|
-
* @memberOf _
|
|
2083
|
-
* @since 0.1.0
|
|
2084
|
-
* @category Collection
|
|
2085
|
-
* @param {Array|Object|string} collection The collection to inspect.
|
|
2086
|
-
* @returns {number} Returns the collection size.
|
|
2087
|
-
* @example
|
|
2088
|
-
*
|
|
2089
|
-
* _.size([1, 2, 3]);
|
|
2090
|
-
* // => 3
|
|
2091
|
-
*
|
|
2092
|
-
* _.size({ 'a': 1, 'b': 2 });
|
|
2093
|
-
* // => 2
|
|
2094
|
-
*
|
|
2095
|
-
* _.size('pebbles');
|
|
2096
|
-
* // => 7
|
|
2097
|
-
*/
|
|
2098
|
-
function size(collection) {
|
|
2099
|
-
if (collection == null) {
|
|
2100
|
-
return 0;
|
|
2101
|
-
}
|
|
2102
|
-
collection = isArrayLike(collection) ? collection : nativeKeys(collection);
|
|
2103
|
-
return collection.length;
|
|
2104
|
-
}
|
|
2105
|
-
|
|
2106
|
-
/**
|
|
2107
|
-
* Checks if `predicate` returns truthy for **any** element of `collection`.
|
|
2108
|
-
* Iteration is stopped once `predicate` returns truthy. The predicate is
|
|
2109
|
-
* invoked with three arguments: (value, index|key, collection).
|
|
2110
|
-
*
|
|
2111
|
-
* @static
|
|
2112
|
-
* @memberOf _
|
|
2113
|
-
* @since 0.1.0
|
|
2114
|
-
* @category Collection
|
|
2115
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
2116
|
-
* @param {Function} [predicate=_.identity] The function invoked per iteration.
|
|
2117
|
-
* @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.
|
|
2118
|
-
* @returns {boolean} Returns `true` if any element passes the predicate check,
|
|
2119
|
-
* else `false`.
|
|
2120
|
-
* @example
|
|
2121
|
-
*
|
|
2122
|
-
* _.some([null, 0, 'yes', false], Boolean);
|
|
2123
|
-
* // => true
|
|
2124
|
-
*
|
|
2125
|
-
* var users = [
|
|
2126
|
-
* { 'user': 'barney', 'active': true },
|
|
2127
|
-
* { 'user': 'fred', 'active': false }
|
|
2128
|
-
* ];
|
|
2129
|
-
*
|
|
2130
|
-
* // The `_.matches` iteratee shorthand.
|
|
2131
|
-
* _.some(users, { 'user': 'barney', 'active': false });
|
|
2132
|
-
* // => false
|
|
2133
|
-
*
|
|
2134
|
-
* // The `_.matchesProperty` iteratee shorthand.
|
|
2135
|
-
* _.some(users, ['active', false]);
|
|
2136
|
-
* // => true
|
|
2137
|
-
*
|
|
2138
|
-
* // The `_.property` iteratee shorthand.
|
|
2139
|
-
* _.some(users, 'active');
|
|
2140
|
-
* // => true
|
|
2141
|
-
*/
|
|
2142
|
-
function some(collection, predicate, guard) {
|
|
2143
|
-
predicate = guard ? undefined : predicate;
|
|
2144
|
-
return baseSome(collection, baseIteratee(predicate));
|
|
2145
|
-
}
|
|
2146
|
-
|
|
2147
|
-
/**
|
|
2148
|
-
* Creates an array of elements, sorted in ascending order by the results of
|
|
2149
|
-
* running each element in a collection thru each iteratee. This method
|
|
2150
|
-
* performs a stable sort, that is, it preserves the original sort order of
|
|
2151
|
-
* equal elements. The iteratees are invoked with one argument: (value).
|
|
2152
|
-
*
|
|
2153
|
-
* @static
|
|
2154
|
-
* @memberOf _
|
|
2155
|
-
* @since 0.1.0
|
|
2156
|
-
* @category Collection
|
|
2157
|
-
* @param {Array|Object} collection The collection to iterate over.
|
|
2158
|
-
* @param {...(Function|Function[])} [iteratees=[_.identity]]
|
|
2159
|
-
* The iteratees to sort by.
|
|
2160
|
-
* @returns {Array} Returns the new sorted array.
|
|
2161
|
-
* @example
|
|
2162
|
-
*
|
|
2163
|
-
* var users = [
|
|
2164
|
-
* { 'user': 'fred', 'age': 48 },
|
|
2165
|
-
* { 'user': 'barney', 'age': 36 },
|
|
2166
|
-
* { 'user': 'fred', 'age': 40 },
|
|
2167
|
-
* { 'user': 'barney', 'age': 34 }
|
|
2168
|
-
* ];
|
|
2169
|
-
*
|
|
2170
|
-
* _.sortBy(users, [function(o) { return o.user; }]);
|
|
2171
|
-
* // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]]
|
|
2172
|
-
*
|
|
2173
|
-
* _.sortBy(users, ['user', 'age']);
|
|
2174
|
-
* // => objects for [['barney', 34], ['barney', 36], ['fred', 40], ['fred', 48]]
|
|
2175
|
-
*/
|
|
2176
|
-
function sortBy(collection, iteratee) {
|
|
2177
|
-
var index = 0;
|
|
2178
|
-
iteratee = baseIteratee(iteratee);
|
|
2179
|
-
|
|
2180
|
-
return baseMap(baseMap(collection, function(value, key, collection) {
|
|
2181
|
-
return { 'value': value, 'index': index++, 'criteria': iteratee(value, key, collection) };
|
|
2182
|
-
}).sort(function(object, other) {
|
|
2183
|
-
return compareAscending(object.criteria, other.criteria) || (object.index - other.index);
|
|
2184
|
-
}), baseProperty('value'));
|
|
2185
|
-
}
|
|
2186
|
-
|
|
2187
|
-
/*------------------------------------------------------------------------*/
|
|
2188
|
-
|
|
2189
|
-
/**
|
|
2190
|
-
* Creates a function that invokes `func`, with the `this` binding and arguments
|
|
2191
|
-
* of the created function, while it's called less than `n` times. Subsequent
|
|
2192
|
-
* calls to the created function return the result of the last `func` invocation.
|
|
2193
|
-
*
|
|
2194
|
-
* @static
|
|
2195
|
-
* @memberOf _
|
|
2196
|
-
* @since 3.0.0
|
|
2197
|
-
* @category Function
|
|
2198
|
-
* @param {number} n The number of calls at which `func` is no longer invoked.
|
|
2199
|
-
* @param {Function} func The function to restrict.
|
|
2200
|
-
* @returns {Function} Returns the new restricted function.
|
|
2201
|
-
* @example
|
|
2202
|
-
*
|
|
2203
|
-
* jQuery(element).on('click', _.before(5, addContactToList));
|
|
2204
|
-
* // => Allows adding up to 4 contacts to the list.
|
|
2205
|
-
*/
|
|
2206
|
-
function before(n, func) {
|
|
2207
|
-
var result;
|
|
2208
|
-
if (typeof func != 'function') {
|
|
2209
|
-
throw new TypeError(FUNC_ERROR_TEXT);
|
|
2210
|
-
}
|
|
2211
|
-
n = toInteger(n);
|
|
2212
|
-
return function() {
|
|
2213
|
-
if (--n > 0) {
|
|
2214
|
-
result = func.apply(this, arguments);
|
|
2215
|
-
}
|
|
2216
|
-
if (n <= 1) {
|
|
2217
|
-
func = undefined;
|
|
2218
|
-
}
|
|
2219
|
-
return result;
|
|
2220
|
-
};
|
|
2221
|
-
}
|
|
2222
|
-
|
|
2223
|
-
/**
|
|
2224
|
-
* Creates a function that invokes `func` with the `this` binding of `thisArg`
|
|
2225
|
-
* and `partials` prepended to the arguments it receives.
|
|
2226
|
-
*
|
|
2227
|
-
* The `_.bind.placeholder` value, which defaults to `_` in monolithic builds,
|
|
2228
|
-
* may be used as a placeholder for partially applied arguments.
|
|
2229
|
-
*
|
|
2230
|
-
* **Note:** Unlike native `Function#bind`, this method doesn't set the "length"
|
|
2231
|
-
* property of bound functions.
|
|
2232
|
-
*
|
|
2233
|
-
* @static
|
|
2234
|
-
* @memberOf _
|
|
2235
|
-
* @since 0.1.0
|
|
2236
|
-
* @category Function
|
|
2237
|
-
* @param {Function} func The function to bind.
|
|
2238
|
-
* @param {*} thisArg The `this` binding of `func`.
|
|
2239
|
-
* @param {...*} [partials] The arguments to be partially applied.
|
|
2240
|
-
* @returns {Function} Returns the new bound function.
|
|
2241
|
-
* @example
|
|
2242
|
-
*
|
|
2243
|
-
* function greet(greeting, punctuation) {
|
|
2244
|
-
* return greeting + ' ' + this.user + punctuation;
|
|
2245
|
-
* }
|
|
2246
|
-
*
|
|
2247
|
-
* var object = { 'user': 'fred' };
|
|
2248
|
-
*
|
|
2249
|
-
* var bound = _.bind(greet, object, 'hi');
|
|
2250
|
-
* bound('!');
|
|
2251
|
-
* // => 'hi fred!'
|
|
2252
|
-
*
|
|
2253
|
-
* // Bound with placeholders.
|
|
2254
|
-
* var bound = _.bind(greet, object, _, '!');
|
|
2255
|
-
* bound('hi');
|
|
2256
|
-
* // => 'hi fred!'
|
|
2257
|
-
*/
|
|
2258
|
-
var bind = baseRest(function(func, thisArg, partials) {
|
|
2259
|
-
return createPartial(func, WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG, thisArg, partials);
|
|
2260
|
-
});
|
|
2261
|
-
|
|
2262
|
-
/**
|
|
2263
|
-
* Defers invoking the `func` until the current call stack has cleared. Any
|
|
2264
|
-
* additional arguments are provided to `func` when it's invoked.
|
|
2265
|
-
*
|
|
2266
|
-
* @static
|
|
2267
|
-
* @memberOf _
|
|
2268
|
-
* @since 0.1.0
|
|
2269
|
-
* @category Function
|
|
2270
|
-
* @param {Function} func The function to defer.
|
|
2271
|
-
* @param {...*} [args] The arguments to invoke `func` with.
|
|
2272
|
-
* @returns {number} Returns the timer id.
|
|
2273
|
-
* @example
|
|
2274
|
-
*
|
|
2275
|
-
* _.defer(function(text) {
|
|
2276
|
-
* console.log(text);
|
|
2277
|
-
* }, 'deferred');
|
|
2278
|
-
* // => Logs 'deferred' after one millisecond.
|
|
2279
|
-
*/
|
|
2280
|
-
var defer = baseRest(function(func, args) {
|
|
2281
|
-
return baseDelay(func, 1, args);
|
|
2282
|
-
});
|
|
2283
|
-
|
|
2284
|
-
/**
|
|
2285
|
-
* Invokes `func` after `wait` milliseconds. Any additional arguments are
|
|
2286
|
-
* provided to `func` when it's invoked.
|
|
2287
|
-
*
|
|
2288
|
-
* @static
|
|
2289
|
-
* @memberOf _
|
|
2290
|
-
* @since 0.1.0
|
|
2291
|
-
* @category Function
|
|
2292
|
-
* @param {Function} func The function to delay.
|
|
2293
|
-
* @param {number} wait The number of milliseconds to delay invocation.
|
|
2294
|
-
* @param {...*} [args] The arguments to invoke `func` with.
|
|
2295
|
-
* @returns {number} Returns the timer id.
|
|
2296
|
-
* @example
|
|
2297
|
-
*
|
|
2298
|
-
* _.delay(function(text) {
|
|
2299
|
-
* console.log(text);
|
|
2300
|
-
* }, 1000, 'later');
|
|
2301
|
-
* // => Logs 'later' after one second.
|
|
2302
|
-
*/
|
|
2303
|
-
var delay = baseRest(function(func, wait, args) {
|
|
2304
|
-
return baseDelay(func, toNumber(wait) || 0, args);
|
|
2305
|
-
});
|
|
2306
|
-
|
|
2307
|
-
/**
|
|
2308
|
-
* Creates a function that negates the result of the predicate `func`. The
|
|
2309
|
-
* `func` predicate is invoked with the `this` binding and arguments of the
|
|
2310
|
-
* created function.
|
|
2311
|
-
*
|
|
2312
|
-
* @static
|
|
2313
|
-
* @memberOf _
|
|
2314
|
-
* @since 3.0.0
|
|
2315
|
-
* @category Function
|
|
2316
|
-
* @param {Function} predicate The predicate to negate.
|
|
2317
|
-
* @returns {Function} Returns the new negated function.
|
|
2318
|
-
* @example
|
|
2319
|
-
*
|
|
2320
|
-
* function isEven(n) {
|
|
2321
|
-
* return n % 2 == 0;
|
|
2322
|
-
* }
|
|
2323
|
-
*
|
|
2324
|
-
* _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven));
|
|
2325
|
-
* // => [1, 3, 5]
|
|
2326
|
-
*/
|
|
2327
|
-
function negate(predicate) {
|
|
2328
|
-
if (typeof predicate != 'function') {
|
|
2329
|
-
throw new TypeError(FUNC_ERROR_TEXT);
|
|
2330
|
-
}
|
|
2331
|
-
return function() {
|
|
2332
|
-
var args = arguments;
|
|
2333
|
-
return !predicate.apply(this, args);
|
|
2334
|
-
};
|
|
2335
|
-
}
|
|
2336
|
-
|
|
2337
|
-
/**
|
|
2338
|
-
* Creates a function that is restricted to invoking `func` once. Repeat calls
|
|
2339
|
-
* to the function return the value of the first invocation. The `func` is
|
|
2340
|
-
* invoked with the `this` binding and arguments of the created function.
|
|
2341
|
-
*
|
|
2342
|
-
* @static
|
|
2343
|
-
* @memberOf _
|
|
2344
|
-
* @since 0.1.0
|
|
2345
|
-
* @category Function
|
|
2346
|
-
* @param {Function} func The function to restrict.
|
|
2347
|
-
* @returns {Function} Returns the new restricted function.
|
|
2348
|
-
* @example
|
|
2349
|
-
*
|
|
2350
|
-
* var initialize = _.once(createApplication);
|
|
2351
|
-
* initialize();
|
|
2352
|
-
* initialize();
|
|
2353
|
-
* // => `createApplication` is invoked once
|
|
2354
|
-
*/
|
|
2355
|
-
function once(func) {
|
|
2356
|
-
return before(2, func);
|
|
2357
|
-
}
|
|
2358
|
-
|
|
2359
|
-
/*------------------------------------------------------------------------*/
|
|
2360
|
-
|
|
2361
|
-
/**
|
|
2362
|
-
* Creates a shallow clone of `value`.
|
|
2363
|
-
*
|
|
2364
|
-
* **Note:** This method is loosely based on the
|
|
2365
|
-
* [structured clone algorithm](https://mdn.io/Structured_clone_algorithm)
|
|
2366
|
-
* and supports cloning arrays, array buffers, booleans, date objects, maps,
|
|
2367
|
-
* numbers, `Object` objects, regexes, sets, strings, symbols, and typed
|
|
2368
|
-
* arrays. The own enumerable properties of `arguments` objects are cloned
|
|
2369
|
-
* as plain objects. An empty object is returned for uncloneable values such
|
|
2370
|
-
* as error objects, functions, DOM nodes, and WeakMaps.
|
|
2371
|
-
*
|
|
2372
|
-
* @static
|
|
2373
|
-
* @memberOf _
|
|
2374
|
-
* @since 0.1.0
|
|
2375
|
-
* @category Lang
|
|
2376
|
-
* @param {*} value The value to clone.
|
|
2377
|
-
* @returns {*} Returns the cloned value.
|
|
2378
|
-
* @see _.cloneDeep
|
|
2379
|
-
* @example
|
|
2380
|
-
*
|
|
2381
|
-
* var objects = [{ 'a': 1 }, { 'b': 2 }];
|
|
2382
|
-
*
|
|
2383
|
-
* var shallow = _.clone(objects);
|
|
2384
|
-
* console.log(shallow[0] === objects[0]);
|
|
2385
|
-
* // => true
|
|
2386
|
-
*/
|
|
2387
|
-
function clone(value) {
|
|
2388
|
-
if (!isObject(value)) {
|
|
2389
|
-
return value;
|
|
2390
|
-
}
|
|
2391
|
-
return isArray(value) ? copyArray(value) : copyObject(value, nativeKeys(value));
|
|
2392
|
-
}
|
|
2393
|
-
|
|
2394
|
-
/**
|
|
2395
|
-
* Performs a
|
|
2396
|
-
* [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
|
|
2397
|
-
* comparison between two values to determine if they are equivalent.
|
|
2398
|
-
*
|
|
2399
|
-
* @static
|
|
2400
|
-
* @memberOf _
|
|
2401
|
-
* @since 4.0.0
|
|
2402
|
-
* @category Lang
|
|
2403
|
-
* @param {*} value The value to compare.
|
|
2404
|
-
* @param {*} other The other value to compare.
|
|
2405
|
-
* @returns {boolean} Returns `true` if the values are equivalent, else `false`.
|
|
2406
|
-
* @example
|
|
2407
|
-
*
|
|
2408
|
-
* var object = { 'a': 1 };
|
|
2409
|
-
* var other = { 'a': 1 };
|
|
2410
|
-
*
|
|
2411
|
-
* _.eq(object, object);
|
|
2412
|
-
* // => true
|
|
2413
|
-
*
|
|
2414
|
-
* _.eq(object, other);
|
|
2415
|
-
* // => false
|
|
2416
|
-
*
|
|
2417
|
-
* _.eq('a', 'a');
|
|
2418
|
-
* // => true
|
|
2419
|
-
*
|
|
2420
|
-
* _.eq('a', Object('a'));
|
|
2421
|
-
* // => false
|
|
2422
|
-
*
|
|
2423
|
-
* _.eq(NaN, NaN);
|
|
2424
|
-
* // => true
|
|
2425
|
-
*/
|
|
2426
|
-
function eq(value, other) {
|
|
2427
|
-
return value === other || (value !== value && other !== other);
|
|
2428
|
-
}
|
|
2429
|
-
|
|
2430
|
-
/**
|
|
2431
|
-
* Checks if `value` is likely an `arguments` object.
|
|
2432
|
-
*
|
|
2433
|
-
* @static
|
|
2434
|
-
* @memberOf _
|
|
2435
|
-
* @since 0.1.0
|
|
2436
|
-
* @category Lang
|
|
2437
|
-
* @param {*} value The value to check.
|
|
2438
|
-
* @returns {boolean} Returns `true` if `value` is an `arguments` object,
|
|
2439
|
-
* else `false`.
|
|
2440
|
-
* @example
|
|
2441
|
-
*
|
|
2442
|
-
* _.isArguments(function() { return arguments; }());
|
|
2443
|
-
* // => true
|
|
2444
|
-
*
|
|
2445
|
-
* _.isArguments([1, 2, 3]);
|
|
2446
|
-
* // => false
|
|
2447
|
-
*/
|
|
2448
|
-
var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {
|
|
2449
|
-
return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&
|
|
2450
|
-
!propertyIsEnumerable.call(value, 'callee');
|
|
2451
|
-
};
|
|
2452
|
-
|
|
2453
|
-
/**
|
|
2454
|
-
* Checks if `value` is classified as an `Array` object.
|
|
2455
|
-
*
|
|
2456
|
-
* @static
|
|
2457
|
-
* @memberOf _
|
|
2458
|
-
* @since 0.1.0
|
|
2459
|
-
* @category Lang
|
|
2460
|
-
* @param {*} value The value to check.
|
|
2461
|
-
* @returns {boolean} Returns `true` if `value` is an array, else `false`.
|
|
2462
|
-
* @example
|
|
2463
|
-
*
|
|
2464
|
-
* _.isArray([1, 2, 3]);
|
|
2465
|
-
* // => true
|
|
2466
|
-
*
|
|
2467
|
-
* _.isArray(document.body.children);
|
|
2468
|
-
* // => false
|
|
2469
|
-
*
|
|
2470
|
-
* _.isArray('abc');
|
|
2471
|
-
* // => false
|
|
2472
|
-
*
|
|
2473
|
-
* _.isArray(_.noop);
|
|
2474
|
-
* // => false
|
|
2475
|
-
*/
|
|
2476
|
-
var isArray = Array.isArray;
|
|
2477
|
-
|
|
2478
|
-
/**
|
|
2479
|
-
* Checks if `value` is array-like. A value is considered array-like if it's
|
|
2480
|
-
* not a function and has a `value.length` that's an integer greater than or
|
|
2481
|
-
* equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
|
|
2482
|
-
*
|
|
2483
|
-
* @static
|
|
2484
|
-
* @memberOf _
|
|
2485
|
-
* @since 4.0.0
|
|
2486
|
-
* @category Lang
|
|
2487
|
-
* @param {*} value The value to check.
|
|
2488
|
-
* @returns {boolean} Returns `true` if `value` is array-like, else `false`.
|
|
2489
|
-
* @example
|
|
2490
|
-
*
|
|
2491
|
-
* _.isArrayLike([1, 2, 3]);
|
|
2492
|
-
* // => true
|
|
2493
|
-
*
|
|
2494
|
-
* _.isArrayLike(document.body.children);
|
|
2495
|
-
* // => true
|
|
2496
|
-
*
|
|
2497
|
-
* _.isArrayLike('abc');
|
|
2498
|
-
* // => true
|
|
2499
|
-
*
|
|
2500
|
-
* _.isArrayLike(_.noop);
|
|
2501
|
-
* // => false
|
|
2502
|
-
*/
|
|
2503
|
-
function isArrayLike(value) {
|
|
2504
|
-
return value != null && isLength(value.length) && !isFunction(value);
|
|
2505
|
-
}
|
|
2506
|
-
|
|
2507
|
-
/**
|
|
2508
|
-
* Checks if `value` is classified as a boolean primitive or object.
|
|
2509
|
-
*
|
|
2510
|
-
* @static
|
|
2511
|
-
* @memberOf _
|
|
2512
|
-
* @since 0.1.0
|
|
2513
|
-
* @category Lang
|
|
2514
|
-
* @param {*} value The value to check.
|
|
2515
|
-
* @returns {boolean} Returns `true` if `value` is a boolean, else `false`.
|
|
2516
|
-
* @example
|
|
2517
|
-
*
|
|
2518
|
-
* _.isBoolean(false);
|
|
2519
|
-
* // => true
|
|
2520
|
-
*
|
|
2521
|
-
* _.isBoolean(null);
|
|
2522
|
-
* // => false
|
|
2523
|
-
*/
|
|
2524
|
-
function isBoolean(value) {
|
|
2525
|
-
return value === true || value === false ||
|
|
2526
|
-
(isObjectLike(value) && baseGetTag(value) == boolTag);
|
|
2527
|
-
}
|
|
2528
|
-
|
|
2529
|
-
/**
|
|
2530
|
-
* Checks if `value` is classified as a `Date` object.
|
|
2531
|
-
*
|
|
2532
|
-
* @static
|
|
2533
|
-
* @memberOf _
|
|
2534
|
-
* @since 0.1.0
|
|
2535
|
-
* @category Lang
|
|
2536
|
-
* @param {*} value The value to check.
|
|
2537
|
-
* @returns {boolean} Returns `true` if `value` is a date object, else `false`.
|
|
2538
|
-
* @example
|
|
2539
|
-
*
|
|
2540
|
-
* _.isDate(new Date);
|
|
2541
|
-
* // => true
|
|
2542
|
-
*
|
|
2543
|
-
* _.isDate('Mon April 23 2012');
|
|
2544
|
-
* // => false
|
|
2545
|
-
*/
|
|
2546
|
-
var isDate = baseIsDate;
|
|
2547
|
-
|
|
2548
|
-
/**
|
|
2549
|
-
* Checks if `value` is an empty object, collection, map, or set.
|
|
2550
|
-
*
|
|
2551
|
-
* Objects are considered empty if they have no own enumerable string keyed
|
|
2552
|
-
* properties.
|
|
2553
|
-
*
|
|
2554
|
-
* Array-like values such as `arguments` objects, arrays, buffers, strings, or
|
|
2555
|
-
* jQuery-like collections are considered empty if they have a `length` of `0`.
|
|
2556
|
-
* Similarly, maps and sets are considered empty if they have a `size` of `0`.
|
|
2557
|
-
*
|
|
2558
|
-
* @static
|
|
2559
|
-
* @memberOf _
|
|
2560
|
-
* @since 0.1.0
|
|
2561
|
-
* @category Lang
|
|
2562
|
-
* @param {*} value The value to check.
|
|
2563
|
-
* @returns {boolean} Returns `true` if `value` is empty, else `false`.
|
|
2564
|
-
* @example
|
|
2565
|
-
*
|
|
2566
|
-
* _.isEmpty(null);
|
|
2567
|
-
* // => true
|
|
2568
|
-
*
|
|
2569
|
-
* _.isEmpty(true);
|
|
2570
|
-
* // => true
|
|
2571
|
-
*
|
|
2572
|
-
* _.isEmpty(1);
|
|
2573
|
-
* // => true
|
|
2574
|
-
*
|
|
2575
|
-
* _.isEmpty([1, 2, 3]);
|
|
2576
|
-
* // => false
|
|
2577
|
-
*
|
|
2578
|
-
* _.isEmpty({ 'a': 1 });
|
|
2579
|
-
* // => false
|
|
2580
|
-
*/
|
|
2581
|
-
function isEmpty(value) {
|
|
2582
|
-
if (isArrayLike(value) &&
|
|
2583
|
-
(isArray(value) || isString(value) ||
|
|
2584
|
-
isFunction(value.splice) || isArguments(value))) {
|
|
2585
|
-
return !value.length;
|
|
2586
|
-
}
|
|
2587
|
-
return !nativeKeys(value).length;
|
|
2588
|
-
}
|
|
2589
|
-
|
|
2590
|
-
/**
|
|
2591
|
-
* Performs a deep comparison between two values to determine if they are
|
|
2592
|
-
* equivalent.
|
|
2593
|
-
*
|
|
2594
|
-
* **Note:** This method supports comparing arrays, array buffers, booleans,
|
|
2595
|
-
* date objects, error objects, maps, numbers, `Object` objects, regexes,
|
|
2596
|
-
* sets, strings, symbols, and typed arrays. `Object` objects are compared
|
|
2597
|
-
* by their own, not inherited, enumerable properties. Functions and DOM
|
|
2598
|
-
* nodes are compared by strict equality, i.e. `===`.
|
|
2599
|
-
*
|
|
2600
|
-
* @static
|
|
2601
|
-
* @memberOf _
|
|
2602
|
-
* @since 0.1.0
|
|
2603
|
-
* @category Lang
|
|
2604
|
-
* @param {*} value The value to compare.
|
|
2605
|
-
* @param {*} other The other value to compare.
|
|
2606
|
-
* @returns {boolean} Returns `true` if the values are equivalent, else `false`.
|
|
2607
|
-
* @example
|
|
2608
|
-
*
|
|
2609
|
-
* var object = { 'a': 1 };
|
|
2610
|
-
* var other = { 'a': 1 };
|
|
2611
|
-
*
|
|
2612
|
-
* _.isEqual(object, other);
|
|
2613
|
-
* // => true
|
|
2614
|
-
*
|
|
2615
|
-
* object === other;
|
|
2616
|
-
* // => false
|
|
2617
|
-
*/
|
|
2618
|
-
function isEqual(value, other) {
|
|
2619
|
-
return baseIsEqual(value, other);
|
|
2620
|
-
}
|
|
2621
|
-
|
|
2622
|
-
/**
|
|
2623
|
-
* Checks if `value` is a finite primitive number.
|
|
2624
|
-
*
|
|
2625
|
-
* **Note:** This method is based on
|
|
2626
|
-
* [`Number.isFinite`](https://mdn.io/Number/isFinite).
|
|
2627
|
-
*
|
|
2628
|
-
* @static
|
|
2629
|
-
* @memberOf _
|
|
2630
|
-
* @since 0.1.0
|
|
2631
|
-
* @category Lang
|
|
2632
|
-
* @param {*} value The value to check.
|
|
2633
|
-
* @returns {boolean} Returns `true` if `value` is a finite number, else `false`.
|
|
2634
|
-
* @example
|
|
2635
|
-
*
|
|
2636
|
-
* _.isFinite(3);
|
|
2637
|
-
* // => true
|
|
2638
|
-
*
|
|
2639
|
-
* _.isFinite(Number.MIN_VALUE);
|
|
2640
|
-
* // => true
|
|
2641
|
-
*
|
|
2642
|
-
* _.isFinite(Infinity);
|
|
2643
|
-
* // => false
|
|
2644
|
-
*
|
|
2645
|
-
* _.isFinite('3');
|
|
2646
|
-
* // => false
|
|
2647
|
-
*/
|
|
2648
|
-
function isFinite(value) {
|
|
2649
|
-
return typeof value == 'number' && nativeIsFinite(value);
|
|
2650
|
-
}
|
|
2651
|
-
|
|
2652
|
-
/**
|
|
2653
|
-
* Checks if `value` is classified as a `Function` object.
|
|
2654
|
-
*
|
|
2655
|
-
* @static
|
|
2656
|
-
* @memberOf _
|
|
2657
|
-
* @since 0.1.0
|
|
2658
|
-
* @category Lang
|
|
2659
|
-
* @param {*} value The value to check.
|
|
2660
|
-
* @returns {boolean} Returns `true` if `value` is a function, else `false`.
|
|
2661
|
-
* @example
|
|
2662
|
-
*
|
|
2663
|
-
* _.isFunction(_);
|
|
2664
|
-
* // => true
|
|
2665
|
-
*
|
|
2666
|
-
* _.isFunction(/abc/);
|
|
2667
|
-
* // => false
|
|
2668
|
-
*/
|
|
2669
|
-
function isFunction(value) {
|
|
2670
|
-
if (!isObject(value)) {
|
|
2671
|
-
return false;
|
|
2672
|
-
}
|
|
2673
|
-
// The use of `Object#toString` avoids issues with the `typeof` operator
|
|
2674
|
-
// in Safari 9 which returns 'object' for typed arrays and other constructors.
|
|
2675
|
-
var tag = baseGetTag(value);
|
|
2676
|
-
return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
|
|
2677
|
-
}
|
|
2678
|
-
|
|
2679
|
-
/**
|
|
2680
|
-
* Checks if `value` is a valid array-like length.
|
|
2681
|
-
*
|
|
2682
|
-
* **Note:** This method is loosely based on
|
|
2683
|
-
* [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
|
|
2684
|
-
*
|
|
2685
|
-
* @static
|
|
2686
|
-
* @memberOf _
|
|
2687
|
-
* @since 4.0.0
|
|
2688
|
-
* @category Lang
|
|
2689
|
-
* @param {*} value The value to check.
|
|
2690
|
-
* @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
|
|
2691
|
-
* @example
|
|
2692
|
-
*
|
|
2693
|
-
* _.isLength(3);
|
|
2694
|
-
* // => true
|
|
2695
|
-
*
|
|
2696
|
-
* _.isLength(Number.MIN_VALUE);
|
|
2697
|
-
* // => false
|
|
2698
|
-
*
|
|
2699
|
-
* _.isLength(Infinity);
|
|
2700
|
-
* // => false
|
|
2701
|
-
*
|
|
2702
|
-
* _.isLength('3');
|
|
2703
|
-
* // => false
|
|
2704
|
-
*/
|
|
2705
|
-
function isLength(value) {
|
|
2706
|
-
return typeof value == 'number' &&
|
|
2707
|
-
value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
|
|
2708
|
-
}
|
|
2709
|
-
|
|
2710
|
-
/**
|
|
2711
|
-
* Checks if `value` is the
|
|
2712
|
-
* [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
|
|
2713
|
-
* of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
|
|
2714
|
-
*
|
|
2715
|
-
* @static
|
|
2716
|
-
* @memberOf _
|
|
2717
|
-
* @since 0.1.0
|
|
2718
|
-
* @category Lang
|
|
2719
|
-
* @param {*} value The value to check.
|
|
2720
|
-
* @returns {boolean} Returns `true` if `value` is an object, else `false`.
|
|
2721
|
-
* @example
|
|
2722
|
-
*
|
|
2723
|
-
* _.isObject({});
|
|
2724
|
-
* // => true
|
|
2725
|
-
*
|
|
2726
|
-
* _.isObject([1, 2, 3]);
|
|
2727
|
-
* // => true
|
|
2728
|
-
*
|
|
2729
|
-
* _.isObject(_.noop);
|
|
2730
|
-
* // => true
|
|
2731
|
-
*
|
|
2732
|
-
* _.isObject(null);
|
|
2733
|
-
* // => false
|
|
2734
|
-
*/
|
|
2735
|
-
function isObject(value) {
|
|
2736
|
-
var type = typeof value;
|
|
2737
|
-
return value != null && (type == 'object' || type == 'function');
|
|
2738
|
-
}
|
|
2739
|
-
|
|
2740
|
-
/**
|
|
2741
|
-
* Checks if `value` is object-like. A value is object-like if it's not `null`
|
|
2742
|
-
* and has a `typeof` result of "object".
|
|
2743
|
-
*
|
|
2744
|
-
* @static
|
|
2745
|
-
* @memberOf _
|
|
2746
|
-
* @since 4.0.0
|
|
2747
|
-
* @category Lang
|
|
2748
|
-
* @param {*} value The value to check.
|
|
2749
|
-
* @returns {boolean} Returns `true` if `value` is object-like, else `false`.
|
|
2750
|
-
* @example
|
|
2751
|
-
*
|
|
2752
|
-
* _.isObjectLike({});
|
|
2753
|
-
* // => true
|
|
2754
|
-
*
|
|
2755
|
-
* _.isObjectLike([1, 2, 3]);
|
|
2756
|
-
* // => true
|
|
2757
|
-
*
|
|
2758
|
-
* _.isObjectLike(_.noop);
|
|
2759
|
-
* // => false
|
|
2760
|
-
*
|
|
2761
|
-
* _.isObjectLike(null);
|
|
2762
|
-
* // => false
|
|
2763
|
-
*/
|
|
2764
|
-
function isObjectLike(value) {
|
|
2765
|
-
return value != null && typeof value == 'object';
|
|
2766
|
-
}
|
|
2767
|
-
|
|
2768
|
-
/**
|
|
2769
|
-
* Checks if `value` is `NaN`.
|
|
2770
|
-
*
|
|
2771
|
-
* **Note:** This method is based on
|
|
2772
|
-
* [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as
|
|
2773
|
-
* global [`isNaN`](https://mdn.io/isNaN) which returns `true` for
|
|
2774
|
-
* `undefined` and other non-number values.
|
|
2775
|
-
*
|
|
2776
|
-
* @static
|
|
2777
|
-
* @memberOf _
|
|
2778
|
-
* @since 0.1.0
|
|
2779
|
-
* @category Lang
|
|
2780
|
-
* @param {*} value The value to check.
|
|
2781
|
-
* @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.
|
|
2782
|
-
* @example
|
|
2783
|
-
*
|
|
2784
|
-
* _.isNaN(NaN);
|
|
2785
|
-
* // => true
|
|
2786
|
-
*
|
|
2787
|
-
* _.isNaN(new Number(NaN));
|
|
2788
|
-
* // => true
|
|
2789
|
-
*
|
|
2790
|
-
* isNaN(undefined);
|
|
2791
|
-
* // => true
|
|
2792
|
-
*
|
|
2793
|
-
* _.isNaN(undefined);
|
|
2794
|
-
* // => false
|
|
2795
|
-
*/
|
|
2796
|
-
function isNaN(value) {
|
|
2797
|
-
// An `NaN` primitive is the only value that is not equal to itself.
|
|
2798
|
-
// Perform the `toStringTag` check first to avoid errors with some
|
|
2799
|
-
// ActiveX objects in IE.
|
|
2800
|
-
return isNumber(value) && value != +value;
|
|
2801
|
-
}
|
|
2802
|
-
|
|
2803
|
-
/**
|
|
2804
|
-
* Checks if `value` is `null`.
|
|
2805
|
-
*
|
|
2806
|
-
* @static
|
|
2807
|
-
* @memberOf _
|
|
2808
|
-
* @since 0.1.0
|
|
2809
|
-
* @category Lang
|
|
2810
|
-
* @param {*} value The value to check.
|
|
2811
|
-
* @returns {boolean} Returns `true` if `value` is `null`, else `false`.
|
|
2812
|
-
* @example
|
|
2813
|
-
*
|
|
2814
|
-
* _.isNull(null);
|
|
2815
|
-
* // => true
|
|
2816
|
-
*
|
|
2817
|
-
* _.isNull(void 0);
|
|
2818
|
-
* // => false
|
|
2819
|
-
*/
|
|
2820
|
-
function isNull(value) {
|
|
2821
|
-
return value === null;
|
|
2822
|
-
}
|
|
2823
|
-
|
|
2824
|
-
/**
|
|
2825
|
-
* Checks if `value` is classified as a `Number` primitive or object.
|
|
2826
|
-
*
|
|
2827
|
-
* **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are
|
|
2828
|
-
* classified as numbers, use the `_.isFinite` method.
|
|
2829
|
-
*
|
|
2830
|
-
* @static
|
|
2831
|
-
* @memberOf _
|
|
2832
|
-
* @since 0.1.0
|
|
2833
|
-
* @category Lang
|
|
2834
|
-
* @param {*} value The value to check.
|
|
2835
|
-
* @returns {boolean} Returns `true` if `value` is a number, else `false`.
|
|
2836
|
-
* @example
|
|
2837
|
-
*
|
|
2838
|
-
* _.isNumber(3);
|
|
2839
|
-
* // => true
|
|
2840
|
-
*
|
|
2841
|
-
* _.isNumber(Number.MIN_VALUE);
|
|
2842
|
-
* // => true
|
|
2843
|
-
*
|
|
2844
|
-
* _.isNumber(Infinity);
|
|
2845
|
-
* // => true
|
|
2846
|
-
*
|
|
2847
|
-
* _.isNumber('3');
|
|
2848
|
-
* // => false
|
|
2849
|
-
*/
|
|
2850
|
-
function isNumber(value) {
|
|
2851
|
-
return typeof value == 'number' ||
|
|
2852
|
-
(isObjectLike(value) && baseGetTag(value) == numberTag);
|
|
2853
|
-
}
|
|
2854
|
-
|
|
2855
|
-
/**
|
|
2856
|
-
* Checks if `value` is classified as a `RegExp` object.
|
|
2857
|
-
*
|
|
2858
|
-
* @static
|
|
2859
|
-
* @memberOf _
|
|
2860
|
-
* @since 0.1.0
|
|
2861
|
-
* @category Lang
|
|
2862
|
-
* @param {*} value The value to check.
|
|
2863
|
-
* @returns {boolean} Returns `true` if `value` is a regexp, else `false`.
|
|
2864
|
-
* @example
|
|
2865
|
-
*
|
|
2866
|
-
* _.isRegExp(/abc/);
|
|
2867
|
-
* // => true
|
|
2868
|
-
*
|
|
2869
|
-
* _.isRegExp('/abc/');
|
|
2870
|
-
* // => false
|
|
2871
|
-
*/
|
|
2872
|
-
var isRegExp = baseIsRegExp;
|
|
2873
|
-
|
|
2874
|
-
/**
|
|
2875
|
-
* Checks if `value` is classified as a `String` primitive or object.
|
|
2876
|
-
*
|
|
2877
|
-
* @static
|
|
2878
|
-
* @since 0.1.0
|
|
2879
|
-
* @memberOf _
|
|
2880
|
-
* @category Lang
|
|
2881
|
-
* @param {*} value The value to check.
|
|
2882
|
-
* @returns {boolean} Returns `true` if `value` is a string, else `false`.
|
|
2883
|
-
* @example
|
|
2884
|
-
*
|
|
2885
|
-
* _.isString('abc');
|
|
2886
|
-
* // => true
|
|
2887
|
-
*
|
|
2888
|
-
* _.isString(1);
|
|
2889
|
-
* // => false
|
|
2890
|
-
*/
|
|
2891
|
-
function isString(value) {
|
|
2892
|
-
return typeof value == 'string' ||
|
|
2893
|
-
(!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag);
|
|
2894
|
-
}
|
|
2895
|
-
|
|
2896
|
-
/**
|
|
2897
|
-
* Checks if `value` is `undefined`.
|
|
2898
|
-
*
|
|
2899
|
-
* @static
|
|
2900
|
-
* @since 0.1.0
|
|
2901
|
-
* @memberOf _
|
|
2902
|
-
* @category Lang
|
|
2903
|
-
* @param {*} value The value to check.
|
|
2904
|
-
* @returns {boolean} Returns `true` if `value` is `undefined`, else `false`.
|
|
2905
|
-
* @example
|
|
2906
|
-
*
|
|
2907
|
-
* _.isUndefined(void 0);
|
|
2908
|
-
* // => true
|
|
2909
|
-
*
|
|
2910
|
-
* _.isUndefined(null);
|
|
2911
|
-
* // => false
|
|
2912
|
-
*/
|
|
2913
|
-
function isUndefined(value) {
|
|
2914
|
-
return value === undefined;
|
|
2915
|
-
}
|
|
2916
|
-
|
|
2917
|
-
/**
|
|
2918
|
-
* Converts `value` to an array.
|
|
2919
|
-
*
|
|
2920
|
-
* @static
|
|
2921
|
-
* @since 0.1.0
|
|
2922
|
-
* @memberOf _
|
|
2923
|
-
* @category Lang
|
|
2924
|
-
* @param {*} value The value to convert.
|
|
2925
|
-
* @returns {Array} Returns the converted array.
|
|
2926
|
-
* @example
|
|
2927
|
-
*
|
|
2928
|
-
* _.toArray({ 'a': 1, 'b': 2 });
|
|
2929
|
-
* // => [1, 2]
|
|
2930
|
-
*
|
|
2931
|
-
* _.toArray('abc');
|
|
2932
|
-
* // => ['a', 'b', 'c']
|
|
2933
|
-
*
|
|
2934
|
-
* _.toArray(1);
|
|
2935
|
-
* // => []
|
|
2936
|
-
*
|
|
2937
|
-
* _.toArray(null);
|
|
2938
|
-
* // => []
|
|
2939
|
-
*/
|
|
2940
|
-
function toArray(value) {
|
|
2941
|
-
if (!isArrayLike(value)) {
|
|
2942
|
-
return values(value);
|
|
2943
|
-
}
|
|
2944
|
-
return value.length ? copyArray(value) : [];
|
|
2945
|
-
}
|
|
2946
|
-
|
|
2947
|
-
/**
|
|
2948
|
-
* Converts `value` to an integer.
|
|
2949
|
-
*
|
|
2950
|
-
* **Note:** This method is loosely based on
|
|
2951
|
-
* [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger).
|
|
2952
|
-
*
|
|
2953
|
-
* @static
|
|
2954
|
-
* @memberOf _
|
|
2955
|
-
* @since 4.0.0
|
|
2956
|
-
* @category Lang
|
|
2957
|
-
* @param {*} value The value to convert.
|
|
2958
|
-
* @returns {number} Returns the converted integer.
|
|
2959
|
-
* @example
|
|
2960
|
-
*
|
|
2961
|
-
* _.toInteger(3.2);
|
|
2962
|
-
* // => 3
|
|
2963
|
-
*
|
|
2964
|
-
* _.toInteger(Number.MIN_VALUE);
|
|
2965
|
-
* // => 0
|
|
2966
|
-
*
|
|
2967
|
-
* _.toInteger(Infinity);
|
|
2968
|
-
* // => 1.7976931348623157e+308
|
|
2969
|
-
*
|
|
2970
|
-
* _.toInteger('3.2');
|
|
2971
|
-
* // => 3
|
|
2972
|
-
*/
|
|
2973
|
-
var toInteger = Number;
|
|
2974
|
-
|
|
2975
|
-
/**
|
|
2976
|
-
* Converts `value` to a number.
|
|
2977
|
-
*
|
|
2978
|
-
* @static
|
|
2979
|
-
* @memberOf _
|
|
2980
|
-
* @since 4.0.0
|
|
2981
|
-
* @category Lang
|
|
2982
|
-
* @param {*} value The value to process.
|
|
2983
|
-
* @returns {number} Returns the number.
|
|
2984
|
-
* @example
|
|
2985
|
-
*
|
|
2986
|
-
* _.toNumber(3.2);
|
|
2987
|
-
* // => 3.2
|
|
2988
|
-
*
|
|
2989
|
-
* _.toNumber(Number.MIN_VALUE);
|
|
2990
|
-
* // => 5e-324
|
|
2991
|
-
*
|
|
2992
|
-
* _.toNumber(Infinity);
|
|
2993
|
-
* // => Infinity
|
|
2994
|
-
*
|
|
2995
|
-
* _.toNumber('3.2');
|
|
2996
|
-
* // => 3.2
|
|
2997
|
-
*/
|
|
2998
|
-
var toNumber = Number;
|
|
2999
|
-
|
|
3000
|
-
/**
|
|
3001
|
-
* Converts `value` to a string. An empty string is returned for `null`
|
|
3002
|
-
* and `undefined` values. The sign of `-0` is preserved.
|
|
3003
|
-
*
|
|
3004
|
-
* @static
|
|
3005
|
-
* @memberOf _
|
|
3006
|
-
* @since 4.0.0
|
|
3007
|
-
* @category Lang
|
|
3008
|
-
* @param {*} value The value to convert.
|
|
3009
|
-
* @returns {string} Returns the converted string.
|
|
3010
|
-
* @example
|
|
3011
|
-
*
|
|
3012
|
-
* _.toString(null);
|
|
3013
|
-
* // => ''
|
|
3014
|
-
*
|
|
3015
|
-
* _.toString(-0);
|
|
3016
|
-
* // => '-0'
|
|
3017
|
-
*
|
|
3018
|
-
* _.toString([1, 2, 3]);
|
|
3019
|
-
* // => '1,2,3'
|
|
3020
|
-
*/
|
|
3021
|
-
function toString(value) {
|
|
3022
|
-
if (typeof value == 'string') {
|
|
3023
|
-
return value;
|
|
3024
|
-
}
|
|
3025
|
-
return value == null ? '' : (value + '');
|
|
3026
|
-
}
|
|
3027
|
-
|
|
3028
|
-
/*------------------------------------------------------------------------*/
|
|
3029
|
-
|
|
3030
|
-
/**
|
|
3031
|
-
* Assigns own enumerable string keyed properties of source objects to the
|
|
3032
|
-
* destination object. Source objects are applied from left to right.
|
|
3033
|
-
* Subsequent sources overwrite property assignments of previous sources.
|
|
3034
|
-
*
|
|
3035
|
-
* **Note:** This method mutates `object` and is loosely based on
|
|
3036
|
-
* [`Object.assign`](https://mdn.io/Object/assign).
|
|
3037
|
-
*
|
|
3038
|
-
* @static
|
|
3039
|
-
* @memberOf _
|
|
3040
|
-
* @since 0.10.0
|
|
3041
|
-
* @category Object
|
|
3042
|
-
* @param {Object} object The destination object.
|
|
3043
|
-
* @param {...Object} [sources] The source objects.
|
|
3044
|
-
* @returns {Object} Returns `object`.
|
|
3045
|
-
* @see _.assignIn
|
|
3046
|
-
* @example
|
|
3047
|
-
*
|
|
3048
|
-
* function Foo() {
|
|
3049
|
-
* this.a = 1;
|
|
3050
|
-
* }
|
|
3051
|
-
*
|
|
3052
|
-
* function Bar() {
|
|
3053
|
-
* this.c = 3;
|
|
3054
|
-
* }
|
|
3055
|
-
*
|
|
3056
|
-
* Foo.prototype.b = 2;
|
|
3057
|
-
* Bar.prototype.d = 4;
|
|
3058
|
-
*
|
|
3059
|
-
* _.assign({ 'a': 0 }, new Foo, new Bar);
|
|
3060
|
-
* // => { 'a': 1, 'c': 3 }
|
|
3061
|
-
*/
|
|
3062
|
-
var assign = createAssigner(function(object, source) {
|
|
3063
|
-
copyObject(source, nativeKeys(source), object);
|
|
3064
|
-
});
|
|
3065
|
-
|
|
3066
|
-
/**
|
|
3067
|
-
* This method is like `_.assign` except that it iterates over own and
|
|
3068
|
-
* inherited source properties.
|
|
3069
|
-
*
|
|
3070
|
-
* **Note:** This method mutates `object`.
|
|
3071
|
-
*
|
|
3072
|
-
* @static
|
|
3073
|
-
* @memberOf _
|
|
3074
|
-
* @since 4.0.0
|
|
3075
|
-
* @alias extend
|
|
3076
|
-
* @category Object
|
|
3077
|
-
* @param {Object} object The destination object.
|
|
3078
|
-
* @param {...Object} [sources] The source objects.
|
|
3079
|
-
* @returns {Object} Returns `object`.
|
|
3080
|
-
* @see _.assign
|
|
3081
|
-
* @example
|
|
3082
|
-
*
|
|
3083
|
-
* function Foo() {
|
|
3084
|
-
* this.a = 1;
|
|
3085
|
-
* }
|
|
3086
|
-
*
|
|
3087
|
-
* function Bar() {
|
|
3088
|
-
* this.c = 3;
|
|
3089
|
-
* }
|
|
3090
|
-
*
|
|
3091
|
-
* Foo.prototype.b = 2;
|
|
3092
|
-
* Bar.prototype.d = 4;
|
|
3093
|
-
*
|
|
3094
|
-
* _.assignIn({ 'a': 0 }, new Foo, new Bar);
|
|
3095
|
-
* // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 }
|
|
3096
|
-
*/
|
|
3097
|
-
var assignIn = createAssigner(function(object, source) {
|
|
3098
|
-
copyObject(source, nativeKeysIn(source), object);
|
|
3099
|
-
});
|
|
3100
|
-
|
|
3101
|
-
/**
|
|
3102
|
-
* This method is like `_.assignIn` except that it accepts `customizer`
|
|
3103
|
-
* which is invoked to produce the assigned values. If `customizer` returns
|
|
3104
|
-
* `undefined`, assignment is handled by the method instead. The `customizer`
|
|
3105
|
-
* is invoked with five arguments: (objValue, srcValue, key, object, source).
|
|
3106
|
-
*
|
|
3107
|
-
* **Note:** This method mutates `object`.
|
|
3108
|
-
*
|
|
3109
|
-
* @static
|
|
3110
|
-
* @memberOf _
|
|
3111
|
-
* @since 4.0.0
|
|
3112
|
-
* @alias extendWith
|
|
3113
|
-
* @category Object
|
|
3114
|
-
* @param {Object} object The destination object.
|
|
3115
|
-
* @param {...Object} sources The source objects.
|
|
3116
|
-
* @param {Function} [customizer] The function to customize assigned values.
|
|
3117
|
-
* @returns {Object} Returns `object`.
|
|
3118
|
-
* @see _.assignWith
|
|
3119
|
-
* @example
|
|
3120
|
-
*
|
|
3121
|
-
* function customizer(objValue, srcValue) {
|
|
3122
|
-
* return _.isUndefined(objValue) ? srcValue : objValue;
|
|
3123
|
-
* }
|
|
3124
|
-
*
|
|
3125
|
-
* var defaults = _.partialRight(_.assignInWith, customizer);
|
|
3126
|
-
*
|
|
3127
|
-
* defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });
|
|
3128
|
-
* // => { 'a': 1, 'b': 2 }
|
|
3129
|
-
*/
|
|
3130
|
-
var assignInWith = createAssigner(function(object, source, srcIndex, customizer) {
|
|
3131
|
-
copyObject(source, keysIn(source), object, customizer);
|
|
3132
|
-
});
|
|
3133
|
-
|
|
3134
|
-
/**
|
|
3135
|
-
* Creates an object that inherits from the `prototype` object. If a
|
|
3136
|
-
* `properties` object is given, its own enumerable string keyed properties
|
|
3137
|
-
* are assigned to the created object.
|
|
3138
|
-
*
|
|
3139
|
-
* @static
|
|
3140
|
-
* @memberOf _
|
|
3141
|
-
* @since 2.3.0
|
|
3142
|
-
* @category Object
|
|
3143
|
-
* @param {Object} prototype The object to inherit from.
|
|
3144
|
-
* @param {Object} [properties] The properties to assign to the object.
|
|
3145
|
-
* @returns {Object} Returns the new object.
|
|
3146
|
-
* @example
|
|
3147
|
-
*
|
|
3148
|
-
* function Shape() {
|
|
3149
|
-
* this.x = 0;
|
|
3150
|
-
* this.y = 0;
|
|
3151
|
-
* }
|
|
3152
|
-
*
|
|
3153
|
-
* function Circle() {
|
|
3154
|
-
* Shape.call(this);
|
|
3155
|
-
* }
|
|
3156
|
-
*
|
|
3157
|
-
* Circle.prototype = _.create(Shape.prototype, {
|
|
3158
|
-
* 'constructor': Circle
|
|
3159
|
-
* });
|
|
3160
|
-
*
|
|
3161
|
-
* var circle = new Circle;
|
|
3162
|
-
* circle instanceof Circle;
|
|
3163
|
-
* // => true
|
|
3164
|
-
*
|
|
3165
|
-
* circle instanceof Shape;
|
|
3166
|
-
* // => true
|
|
3167
|
-
*/
|
|
3168
|
-
function create(prototype, properties) {
|
|
3169
|
-
var result = baseCreate(prototype);
|
|
3170
|
-
return properties == null ? result : assign(result, properties);
|
|
3171
|
-
}
|
|
3172
|
-
|
|
3173
|
-
/**
|
|
3174
|
-
* Assigns own and inherited enumerable string keyed properties of source
|
|
3175
|
-
* objects to the destination object for all destination properties that
|
|
3176
|
-
* resolve to `undefined`. Source objects are applied from left to right.
|
|
3177
|
-
* Once a property is set, additional values of the same property are ignored.
|
|
3178
|
-
*
|
|
3179
|
-
* **Note:** This method mutates `object`.
|
|
3180
|
-
*
|
|
3181
|
-
* @static
|
|
3182
|
-
* @since 0.1.0
|
|
3183
|
-
* @memberOf _
|
|
3184
|
-
* @category Object
|
|
3185
|
-
* @param {Object} object The destination object.
|
|
3186
|
-
* @param {...Object} [sources] The source objects.
|
|
3187
|
-
* @returns {Object} Returns `object`.
|
|
3188
|
-
* @see _.defaultsDeep
|
|
3189
|
-
* @example
|
|
3190
|
-
*
|
|
3191
|
-
* _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });
|
|
3192
|
-
* // => { 'a': 1, 'b': 2 }
|
|
3193
|
-
*/
|
|
3194
|
-
var defaults = baseRest(function(args) {
|
|
3195
|
-
args.push(undefined, customDefaultsAssignIn);
|
|
3196
|
-
return assignInWith.apply(undefined, args);
|
|
3197
|
-
});
|
|
3198
|
-
|
|
3199
|
-
/**
|
|
3200
|
-
* Checks if `path` is a direct property of `object`.
|
|
3201
|
-
*
|
|
3202
|
-
* @static
|
|
3203
|
-
* @since 0.1.0
|
|
3204
|
-
* @memberOf _
|
|
3205
|
-
* @category Object
|
|
3206
|
-
* @param {Object} object The object to query.
|
|
3207
|
-
* @param {Array|string} path The path to check.
|
|
3208
|
-
* @returns {boolean} Returns `true` if `path` exists, else `false`.
|
|
3209
|
-
* @example
|
|
3210
|
-
*
|
|
3211
|
-
* var object = { 'a': { 'b': 2 } };
|
|
3212
|
-
* var other = _.create({ 'a': _.create({ 'b': 2 }) });
|
|
3213
|
-
*
|
|
3214
|
-
* _.has(object, 'a');
|
|
3215
|
-
* // => true
|
|
3216
|
-
*
|
|
3217
|
-
* _.has(object, 'a.b');
|
|
3218
|
-
* // => true
|
|
3219
|
-
*
|
|
3220
|
-
* _.has(object, ['a', 'b']);
|
|
3221
|
-
* // => true
|
|
3222
|
-
*
|
|
3223
|
-
* _.has(other, 'a');
|
|
3224
|
-
* // => false
|
|
3225
|
-
*/
|
|
3226
|
-
function has(object, path) {
|
|
3227
|
-
return object != null && hasOwnProperty.call(object, path);
|
|
3228
|
-
}
|
|
3229
|
-
|
|
3230
|
-
/**
|
|
3231
|
-
* Creates an array of the own enumerable property names of `object`.
|
|
3232
|
-
*
|
|
3233
|
-
* **Note:** Non-object values are coerced to objects. See the
|
|
3234
|
-
* [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)
|
|
3235
|
-
* for more details.
|
|
3236
|
-
*
|
|
3237
|
-
* @static
|
|
3238
|
-
* @since 0.1.0
|
|
3239
|
-
* @memberOf _
|
|
3240
|
-
* @category Object
|
|
3241
|
-
* @param {Object} object The object to query.
|
|
3242
|
-
* @returns {Array} Returns the array of property names.
|
|
3243
|
-
* @example
|
|
3244
|
-
*
|
|
3245
|
-
* function Foo() {
|
|
3246
|
-
* this.a = 1;
|
|
3247
|
-
* this.b = 2;
|
|
3248
|
-
* }
|
|
3249
|
-
*
|
|
3250
|
-
* Foo.prototype.c = 3;
|
|
3251
|
-
*
|
|
3252
|
-
* _.keys(new Foo);
|
|
3253
|
-
* // => ['a', 'b'] (iteration order is not guaranteed)
|
|
3254
|
-
*
|
|
3255
|
-
* _.keys('hi');
|
|
3256
|
-
* // => ['0', '1']
|
|
3257
|
-
*/
|
|
3258
|
-
var keys = nativeKeys;
|
|
3259
|
-
|
|
3260
|
-
/**
|
|
3261
|
-
* Creates an array of the own and inherited enumerable property names of `object`.
|
|
3262
|
-
*
|
|
3263
|
-
* **Note:** Non-object values are coerced to objects.
|
|
3264
|
-
*
|
|
3265
|
-
* @static
|
|
3266
|
-
* @memberOf _
|
|
3267
|
-
* @since 3.0.0
|
|
3268
|
-
* @category Object
|
|
3269
|
-
* @param {Object} object The object to query.
|
|
3270
|
-
* @returns {Array} Returns the array of property names.
|
|
3271
|
-
* @example
|
|
3272
|
-
*
|
|
3273
|
-
* function Foo() {
|
|
3274
|
-
* this.a = 1;
|
|
3275
|
-
* this.b = 2;
|
|
3276
|
-
* }
|
|
3277
|
-
*
|
|
3278
|
-
* Foo.prototype.c = 3;
|
|
3279
|
-
*
|
|
3280
|
-
* _.keysIn(new Foo);
|
|
3281
|
-
* // => ['a', 'b', 'c'] (iteration order is not guaranteed)
|
|
3282
|
-
*/
|
|
3283
|
-
var keysIn = nativeKeysIn;
|
|
3284
|
-
|
|
3285
|
-
/**
|
|
3286
|
-
* Creates an object composed of the picked `object` properties.
|
|
3287
|
-
*
|
|
3288
|
-
* @static
|
|
3289
|
-
* @since 0.1.0
|
|
3290
|
-
* @memberOf _
|
|
3291
|
-
* @category Object
|
|
3292
|
-
* @param {Object} object The source object.
|
|
3293
|
-
* @param {...(string|string[])} [paths] The property paths to pick.
|
|
3294
|
-
* @returns {Object} Returns the new object.
|
|
3295
|
-
* @example
|
|
3296
|
-
*
|
|
3297
|
-
* var object = { 'a': 1, 'b': '2', 'c': 3 };
|
|
3298
|
-
*
|
|
3299
|
-
* _.pick(object, ['a', 'c']);
|
|
3300
|
-
* // => { 'a': 1, 'c': 3 }
|
|
3301
|
-
*/
|
|
3302
|
-
var pick = flatRest(function(object, paths) {
|
|
3303
|
-
return object == null ? {} : basePick(object, paths);
|
|
3304
|
-
});
|
|
3305
|
-
|
|
3306
|
-
/**
|
|
3307
|
-
* This method is like `_.get` except that if the resolved value is a
|
|
3308
|
-
* function it's invoked with the `this` binding of its parent object and
|
|
3309
|
-
* its result is returned.
|
|
3310
|
-
*
|
|
3311
|
-
* @static
|
|
3312
|
-
* @since 0.1.0
|
|
3313
|
-
* @memberOf _
|
|
3314
|
-
* @category Object
|
|
3315
|
-
* @param {Object} object The object to query.
|
|
3316
|
-
* @param {Array|string} path The path of the property to resolve.
|
|
3317
|
-
* @param {*} [defaultValue] The value returned for `undefined` resolved values.
|
|
3318
|
-
* @returns {*} Returns the resolved value.
|
|
3319
|
-
* @example
|
|
3320
|
-
*
|
|
3321
|
-
* var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] };
|
|
3322
|
-
*
|
|
3323
|
-
* _.result(object, 'a[0].b.c1');
|
|
3324
|
-
* // => 3
|
|
3325
|
-
*
|
|
3326
|
-
* _.result(object, 'a[0].b.c2');
|
|
3327
|
-
* // => 4
|
|
3328
|
-
*
|
|
3329
|
-
* _.result(object, 'a[0].b.c3', 'default');
|
|
3330
|
-
* // => 'default'
|
|
3331
|
-
*
|
|
3332
|
-
* _.result(object, 'a[0].b.c3', _.constant('default'));
|
|
3333
|
-
* // => 'default'
|
|
3334
|
-
*/
|
|
3335
|
-
function result(object, path, defaultValue) {
|
|
3336
|
-
var value = object == null ? undefined : object[path];
|
|
3337
|
-
if (value === undefined) {
|
|
3338
|
-
value = defaultValue;
|
|
3339
|
-
}
|
|
3340
|
-
return isFunction(value) ? value.call(object) : value;
|
|
3341
|
-
}
|
|
3342
|
-
|
|
3343
|
-
/**
|
|
3344
|
-
* Creates an array of the own enumerable string keyed property values of `object`.
|
|
3345
|
-
*
|
|
3346
|
-
* **Note:** Non-object values are coerced to objects.
|
|
3347
|
-
*
|
|
3348
|
-
* @static
|
|
3349
|
-
* @since 0.1.0
|
|
3350
|
-
* @memberOf _
|
|
3351
|
-
* @category Object
|
|
3352
|
-
* @param {Object} object The object to query.
|
|
3353
|
-
* @returns {Array} Returns the array of property values.
|
|
3354
|
-
* @example
|
|
3355
|
-
*
|
|
3356
|
-
* function Foo() {
|
|
3357
|
-
* this.a = 1;
|
|
3358
|
-
* this.b = 2;
|
|
3359
|
-
* }
|
|
3360
|
-
*
|
|
3361
|
-
* Foo.prototype.c = 3;
|
|
3362
|
-
*
|
|
3363
|
-
* _.values(new Foo);
|
|
3364
|
-
* // => [1, 2] (iteration order is not guaranteed)
|
|
3365
|
-
*
|
|
3366
|
-
* _.values('hi');
|
|
3367
|
-
* // => ['h', 'i']
|
|
3368
|
-
*/
|
|
3369
|
-
function values(object) {
|
|
3370
|
-
return object == null ? [] : baseValues(object, keys(object));
|
|
3371
|
-
}
|
|
3372
|
-
|
|
3373
|
-
/*------------------------------------------------------------------------*/
|
|
3374
|
-
|
|
3375
|
-
/**
|
|
3376
|
-
* Converts the characters "&", "<", ">", '"', and "'" in `string` to their
|
|
3377
|
-
* corresponding HTML entities.
|
|
3378
|
-
*
|
|
3379
|
-
* **Note:** No other characters are escaped. To escape additional
|
|
3380
|
-
* characters use a third-party library like [_he_](https://mths.be/he).
|
|
3381
|
-
*
|
|
3382
|
-
* Though the ">" character is escaped for symmetry, characters like
|
|
3383
|
-
* ">" and "/" don't need escaping in HTML and have no special meaning
|
|
3384
|
-
* unless they're part of a tag or unquoted attribute value. See
|
|
3385
|
-
* [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands)
|
|
3386
|
-
* (under "semi-related fun fact") for more details.
|
|
3387
|
-
*
|
|
3388
|
-
* When working with HTML you should always
|
|
3389
|
-
* [quote attribute values](http://wonko.com/post/html-escaping) to reduce
|
|
3390
|
-
* XSS vectors.
|
|
3391
|
-
*
|
|
3392
|
-
* @static
|
|
3393
|
-
* @since 0.1.0
|
|
3394
|
-
* @memberOf _
|
|
3395
|
-
* @category String
|
|
3396
|
-
* @param {string} [string=''] The string to escape.
|
|
3397
|
-
* @returns {string} Returns the escaped string.
|
|
3398
|
-
* @example
|
|
3399
|
-
*
|
|
3400
|
-
* _.escape('fred, barney, & pebbles');
|
|
3401
|
-
* // => 'fred, barney, & pebbles'
|
|
3402
|
-
*/
|
|
3403
|
-
function escape(string) {
|
|
3404
|
-
string = toString(string);
|
|
3405
|
-
return (string && reHasUnescapedHtml.test(string))
|
|
3406
|
-
? string.replace(reUnescapedHtml, escapeHtmlChar)
|
|
3407
|
-
: string;
|
|
3408
|
-
}
|
|
3409
|
-
|
|
3410
|
-
/*------------------------------------------------------------------------*/
|
|
3411
|
-
|
|
3412
|
-
/**
|
|
3413
|
-
* This method returns the first argument it receives.
|
|
3414
|
-
*
|
|
3415
|
-
* @static
|
|
3416
|
-
* @since 0.1.0
|
|
3417
|
-
* @memberOf _
|
|
3418
|
-
* @category Util
|
|
3419
|
-
* @param {*} value Any value.
|
|
3420
|
-
* @returns {*} Returns `value`.
|
|
3421
|
-
* @example
|
|
3422
|
-
*
|
|
3423
|
-
* var object = { 'a': 1 };
|
|
3424
|
-
*
|
|
3425
|
-
* console.log(_.identity(object) === object);
|
|
3426
|
-
* // => true
|
|
3427
|
-
*/
|
|
3428
|
-
function identity(value) {
|
|
3429
|
-
return value;
|
|
3430
|
-
}
|
|
3431
|
-
|
|
3432
|
-
/**
|
|
3433
|
-
* Creates a function that invokes `func` with the arguments of the created
|
|
3434
|
-
* function. If `func` is a property name, the created function returns the
|
|
3435
|
-
* property value for a given element. If `func` is an array or object, the
|
|
3436
|
-
* created function returns `true` for elements that contain the equivalent
|
|
3437
|
-
* source properties, otherwise it returns `false`.
|
|
3438
|
-
*
|
|
3439
|
-
* @static
|
|
3440
|
-
* @since 4.0.0
|
|
3441
|
-
* @memberOf _
|
|
3442
|
-
* @category Util
|
|
3443
|
-
* @param {*} [func=_.identity] The value to convert to a callback.
|
|
3444
|
-
* @returns {Function} Returns the callback.
|
|
3445
|
-
* @example
|
|
3446
|
-
*
|
|
3447
|
-
* var users = [
|
|
3448
|
-
* { 'user': 'barney', 'age': 36, 'active': true },
|
|
3449
|
-
* { 'user': 'fred', 'age': 40, 'active': false }
|
|
3450
|
-
* ];
|
|
3451
|
-
*
|
|
3452
|
-
* // The `_.matches` iteratee shorthand.
|
|
3453
|
-
* _.filter(users, _.iteratee({ 'user': 'barney', 'active': true }));
|
|
3454
|
-
* // => [{ 'user': 'barney', 'age': 36, 'active': true }]
|
|
3455
|
-
*
|
|
3456
|
-
* // The `_.matchesProperty` iteratee shorthand.
|
|
3457
|
-
* _.filter(users, _.iteratee(['user', 'fred']));
|
|
3458
|
-
* // => [{ 'user': 'fred', 'age': 40 }]
|
|
3459
|
-
*
|
|
3460
|
-
* // The `_.property` iteratee shorthand.
|
|
3461
|
-
* _.map(users, _.iteratee('user'));
|
|
3462
|
-
* // => ['barney', 'fred']
|
|
3463
|
-
*
|
|
3464
|
-
* // Create custom iteratee shorthands.
|
|
3465
|
-
* _.iteratee = _.wrap(_.iteratee, function(iteratee, func) {
|
|
3466
|
-
* return !_.isRegExp(func) ? iteratee(func) : function(string) {
|
|
3467
|
-
* return func.test(string);
|
|
3468
|
-
* };
|
|
3469
|
-
* });
|
|
3470
|
-
*
|
|
3471
|
-
* _.filter(['abc', 'def'], /ef/);
|
|
3472
|
-
* // => ['def']
|
|
3473
|
-
*/
|
|
3474
|
-
var iteratee = baseIteratee;
|
|
3475
|
-
|
|
3476
|
-
/**
|
|
3477
|
-
* Creates a function that performs a partial deep comparison between a given
|
|
3478
|
-
* object and `source`, returning `true` if the given object has equivalent
|
|
3479
|
-
* property values, else `false`.
|
|
3480
|
-
*
|
|
3481
|
-
* **Note:** The created function is equivalent to `_.isMatch` with `source`
|
|
3482
|
-
* partially applied.
|
|
3483
|
-
*
|
|
3484
|
-
* Partial comparisons will match empty array and empty object `source`
|
|
3485
|
-
* values against any array or object value, respectively. See `_.isEqual`
|
|
3486
|
-
* for a list of supported value comparisons.
|
|
3487
|
-
*
|
|
3488
|
-
* @static
|
|
3489
|
-
* @memberOf _
|
|
3490
|
-
* @since 3.0.0
|
|
3491
|
-
* @category Util
|
|
3492
|
-
* @param {Object} source The object of property values to match.
|
|
3493
|
-
* @returns {Function} Returns the new spec function.
|
|
3494
|
-
* @example
|
|
3495
|
-
*
|
|
3496
|
-
* var objects = [
|
|
3497
|
-
* { 'a': 1, 'b': 2, 'c': 3 },
|
|
3498
|
-
* { 'a': 4, 'b': 5, 'c': 6 }
|
|
3499
|
-
* ];
|
|
3500
|
-
*
|
|
3501
|
-
* _.filter(objects, _.matches({ 'a': 4, 'c': 6 }));
|
|
3502
|
-
* // => [{ 'a': 4, 'b': 5, 'c': 6 }]
|
|
3503
|
-
*/
|
|
3504
|
-
function matches(source) {
|
|
3505
|
-
return baseMatches(assign({}, source));
|
|
3506
|
-
}
|
|
3507
|
-
|
|
3508
|
-
/**
|
|
3509
|
-
* Adds all own enumerable string keyed function properties of a source
|
|
3510
|
-
* object to the destination object. If `object` is a function, then methods
|
|
3511
|
-
* are added to its prototype as well.
|
|
3512
|
-
*
|
|
3513
|
-
* **Note:** Use `_.runInContext` to create a pristine `lodash` function to
|
|
3514
|
-
* avoid conflicts caused by modifying the original.
|
|
3515
|
-
*
|
|
3516
|
-
* @static
|
|
3517
|
-
* @since 0.1.0
|
|
3518
|
-
* @memberOf _
|
|
3519
|
-
* @category Util
|
|
3520
|
-
* @param {Function|Object} [object=lodash] The destination object.
|
|
3521
|
-
* @param {Object} source The object of functions to add.
|
|
3522
|
-
* @param {Object} [options={}] The options object.
|
|
3523
|
-
* @param {boolean} [options.chain=true] Specify whether mixins are chainable.
|
|
3524
|
-
* @returns {Function|Object} Returns `object`.
|
|
3525
|
-
* @example
|
|
3526
|
-
*
|
|
3527
|
-
* function vowels(string) {
|
|
3528
|
-
* return _.filter(string, function(v) {
|
|
3529
|
-
* return /[aeiou]/i.test(v);
|
|
3530
|
-
* });
|
|
3531
|
-
* }
|
|
3532
|
-
*
|
|
3533
|
-
* _.mixin({ 'vowels': vowels });
|
|
3534
|
-
* _.vowels('fred');
|
|
3535
|
-
* // => ['e']
|
|
3536
|
-
*
|
|
3537
|
-
* _('fred').vowels().value();
|
|
3538
|
-
* // => ['e']
|
|
3539
|
-
*
|
|
3540
|
-
* _.mixin({ 'vowels': vowels }, { 'chain': false });
|
|
3541
|
-
* _('fred').vowels();
|
|
3542
|
-
* // => ['e']
|
|
3543
|
-
*/
|
|
3544
|
-
function mixin(object, source, options) {
|
|
3545
|
-
var props = keys(source),
|
|
3546
|
-
methodNames = baseFunctions(source, props);
|
|
3547
|
-
|
|
3548
|
-
if (options == null &&
|
|
3549
|
-
!(isObject(source) && (methodNames.length || !props.length))) {
|
|
3550
|
-
options = source;
|
|
3551
|
-
source = object;
|
|
3552
|
-
object = this;
|
|
3553
|
-
methodNames = baseFunctions(source, keys(source));
|
|
3554
|
-
}
|
|
3555
|
-
var chain = !(isObject(options) && 'chain' in options) || !!options.chain,
|
|
3556
|
-
isFunc = isFunction(object);
|
|
3557
|
-
|
|
3558
|
-
baseEach(methodNames, function(methodName) {
|
|
3559
|
-
var func = source[methodName];
|
|
3560
|
-
object[methodName] = func;
|
|
3561
|
-
if (isFunc) {
|
|
3562
|
-
object.prototype[methodName] = function() {
|
|
3563
|
-
var chainAll = this.__chain__;
|
|
3564
|
-
if (chain || chainAll) {
|
|
3565
|
-
var result = object(this.__wrapped__),
|
|
3566
|
-
actions = result.__actions__ = copyArray(this.__actions__);
|
|
3567
|
-
|
|
3568
|
-
actions.push({ 'func': func, 'args': arguments, 'thisArg': object });
|
|
3569
|
-
result.__chain__ = chainAll;
|
|
3570
|
-
return result;
|
|
3571
|
-
}
|
|
3572
|
-
return func.apply(object, arrayPush([this.value()], arguments));
|
|
3573
|
-
};
|
|
3574
|
-
}
|
|
3575
|
-
});
|
|
3576
|
-
|
|
3577
|
-
return object;
|
|
3578
|
-
}
|
|
3579
|
-
|
|
3580
|
-
/**
|
|
3581
|
-
* Reverts the `_` variable to its previous value and returns a reference to
|
|
3582
|
-
* the `lodash` function.
|
|
3583
|
-
*
|
|
3584
|
-
* @static
|
|
3585
|
-
* @since 0.1.0
|
|
3586
|
-
* @memberOf _
|
|
3587
|
-
* @category Util
|
|
3588
|
-
* @returns {Function} Returns the `lodash` function.
|
|
3589
|
-
* @example
|
|
3590
|
-
*
|
|
3591
|
-
* var lodash = _.noConflict();
|
|
3592
|
-
*/
|
|
3593
|
-
function noConflict() {
|
|
3594
|
-
if (root._ === this) {
|
|
3595
|
-
root._ = oldDash;
|
|
3596
|
-
}
|
|
3597
|
-
return this;
|
|
3598
|
-
}
|
|
3599
|
-
|
|
3600
|
-
/**
|
|
3601
|
-
* This method returns `undefined`.
|
|
3602
|
-
*
|
|
3603
|
-
* @static
|
|
3604
|
-
* @memberOf _
|
|
3605
|
-
* @since 2.3.0
|
|
3606
|
-
* @category Util
|
|
3607
|
-
* @example
|
|
3608
|
-
*
|
|
3609
|
-
* _.times(2, _.noop);
|
|
3610
|
-
* // => [undefined, undefined]
|
|
3611
|
-
*/
|
|
3612
|
-
function noop() {
|
|
3613
|
-
// No operation performed.
|
|
3614
|
-
}
|
|
3615
|
-
|
|
3616
|
-
/**
|
|
3617
|
-
* Generates a unique ID. If `prefix` is given, the ID is appended to it.
|
|
3618
|
-
*
|
|
3619
|
-
* @static
|
|
3620
|
-
* @since 0.1.0
|
|
3621
|
-
* @memberOf _
|
|
3622
|
-
* @category Util
|
|
3623
|
-
* @param {string} [prefix=''] The value to prefix the ID with.
|
|
3624
|
-
* @returns {string} Returns the unique ID.
|
|
3625
|
-
* @example
|
|
3626
|
-
*
|
|
3627
|
-
* _.uniqueId('contact_');
|
|
3628
|
-
* // => 'contact_104'
|
|
3629
|
-
*
|
|
3630
|
-
* _.uniqueId();
|
|
3631
|
-
* // => '105'
|
|
3632
|
-
*/
|
|
3633
|
-
function uniqueId(prefix) {
|
|
3634
|
-
var id = ++idCounter;
|
|
3635
|
-
return toString(prefix) + id;
|
|
3636
|
-
}
|
|
3637
|
-
|
|
3638
|
-
/*------------------------------------------------------------------------*/
|
|
3639
|
-
|
|
3640
|
-
/**
|
|
3641
|
-
* Computes the maximum value of `array`. If `array` is empty or falsey,
|
|
3642
|
-
* `undefined` is returned.
|
|
3643
|
-
*
|
|
3644
|
-
* @static
|
|
3645
|
-
* @since 0.1.0
|
|
3646
|
-
* @memberOf _
|
|
3647
|
-
* @category Math
|
|
3648
|
-
* @param {Array} array The array to iterate over.
|
|
3649
|
-
* @returns {*} Returns the maximum value.
|
|
3650
|
-
* @example
|
|
3651
|
-
*
|
|
3652
|
-
* _.max([4, 2, 8, 6]);
|
|
3653
|
-
* // => 8
|
|
3654
|
-
*
|
|
3655
|
-
* _.max([]);
|
|
3656
|
-
* // => undefined
|
|
3657
|
-
*/
|
|
3658
|
-
function max(array) {
|
|
3659
|
-
return (array && array.length)
|
|
3660
|
-
? baseExtremum(array, identity, baseGt)
|
|
3661
|
-
: undefined;
|
|
3662
|
-
}
|
|
3663
|
-
|
|
3664
|
-
/**
|
|
3665
|
-
* Computes the minimum value of `array`. If `array` is empty or falsey,
|
|
3666
|
-
* `undefined` is returned.
|
|
3667
|
-
*
|
|
3668
|
-
* @static
|
|
3669
|
-
* @since 0.1.0
|
|
3670
|
-
* @memberOf _
|
|
3671
|
-
* @category Math
|
|
3672
|
-
* @param {Array} array The array to iterate over.
|
|
3673
|
-
* @returns {*} Returns the minimum value.
|
|
3674
|
-
* @example
|
|
3675
|
-
*
|
|
3676
|
-
* _.min([4, 2, 8, 6]);
|
|
3677
|
-
* // => 2
|
|
3678
|
-
*
|
|
3679
|
-
* _.min([]);
|
|
3680
|
-
* // => undefined
|
|
3681
|
-
*/
|
|
3682
|
-
function min(array) {
|
|
3683
|
-
return (array && array.length)
|
|
3684
|
-
? baseExtremum(array, identity, baseLt)
|
|
3685
|
-
: undefined;
|
|
3686
|
-
}
|
|
3687
|
-
|
|
3688
|
-
/*------------------------------------------------------------------------*/
|
|
3689
|
-
|
|
3690
|
-
// Add methods that return wrapped values in chain sequences.
|
|
3691
|
-
lodash.assignIn = assignIn;
|
|
3692
|
-
lodash.before = before;
|
|
3693
|
-
lodash.bind = bind;
|
|
3694
|
-
lodash.chain = chain;
|
|
3695
|
-
lodash.compact = compact;
|
|
3696
|
-
lodash.concat = concat;
|
|
3697
|
-
lodash.create = create;
|
|
3698
|
-
lodash.defaults = defaults;
|
|
3699
|
-
lodash.defer = defer;
|
|
3700
|
-
lodash.delay = delay;
|
|
3701
|
-
lodash.filter = filter;
|
|
3702
|
-
lodash.flatten = flatten;
|
|
3703
|
-
lodash.flattenDeep = flattenDeep;
|
|
3704
|
-
lodash.iteratee = iteratee;
|
|
3705
|
-
lodash.keys = keys;
|
|
3706
|
-
lodash.map = map;
|
|
3707
|
-
lodash.matches = matches;
|
|
3708
|
-
lodash.mixin = mixin;
|
|
3709
|
-
lodash.negate = negate;
|
|
3710
|
-
lodash.once = once;
|
|
3711
|
-
lodash.pick = pick;
|
|
3712
|
-
lodash.slice = slice;
|
|
3713
|
-
lodash.sortBy = sortBy;
|
|
3714
|
-
lodash.tap = tap;
|
|
3715
|
-
lodash.thru = thru;
|
|
3716
|
-
lodash.toArray = toArray;
|
|
3717
|
-
lodash.values = values;
|
|
3718
|
-
|
|
3719
|
-
// Add aliases.
|
|
3720
|
-
lodash.extend = assignIn;
|
|
3721
|
-
|
|
3722
|
-
// Add methods to `lodash.prototype`.
|
|
3723
|
-
mixin(lodash, lodash);
|
|
3724
|
-
|
|
3725
|
-
/*------------------------------------------------------------------------*/
|
|
3726
|
-
|
|
3727
|
-
// Add methods that return unwrapped values in chain sequences.
|
|
3728
|
-
lodash.clone = clone;
|
|
3729
|
-
lodash.escape = escape;
|
|
3730
|
-
lodash.every = every;
|
|
3731
|
-
lodash.find = find;
|
|
3732
|
-
lodash.forEach = forEach;
|
|
3733
|
-
lodash.has = has;
|
|
3734
|
-
lodash.head = head;
|
|
3735
|
-
lodash.identity = identity;
|
|
3736
|
-
lodash.indexOf = indexOf;
|
|
3737
|
-
lodash.isArguments = isArguments;
|
|
3738
|
-
lodash.isArray = isArray;
|
|
3739
|
-
lodash.isBoolean = isBoolean;
|
|
3740
|
-
lodash.isDate = isDate;
|
|
3741
|
-
lodash.isEmpty = isEmpty;
|
|
3742
|
-
lodash.isEqual = isEqual;
|
|
3743
|
-
lodash.isFinite = isFinite;
|
|
3744
|
-
lodash.isFunction = isFunction;
|
|
3745
|
-
lodash.isNaN = isNaN;
|
|
3746
|
-
lodash.isNull = isNull;
|
|
3747
|
-
lodash.isNumber = isNumber;
|
|
3748
|
-
lodash.isObject = isObject;
|
|
3749
|
-
lodash.isRegExp = isRegExp;
|
|
3750
|
-
lodash.isString = isString;
|
|
3751
|
-
lodash.isUndefined = isUndefined;
|
|
3752
|
-
lodash.last = last;
|
|
3753
|
-
lodash.max = max;
|
|
3754
|
-
lodash.min = min;
|
|
3755
|
-
lodash.noConflict = noConflict;
|
|
3756
|
-
lodash.noop = noop;
|
|
3757
|
-
lodash.reduce = reduce;
|
|
3758
|
-
lodash.result = result;
|
|
3759
|
-
lodash.size = size;
|
|
3760
|
-
lodash.some = some;
|
|
3761
|
-
lodash.uniqueId = uniqueId;
|
|
3762
|
-
|
|
3763
|
-
// Add aliases.
|
|
3764
|
-
lodash.each = forEach;
|
|
3765
|
-
lodash.first = head;
|
|
3766
|
-
|
|
3767
|
-
mixin(lodash, (function() {
|
|
3768
|
-
var source = {};
|
|
3769
|
-
baseForOwn(lodash, function(func, methodName) {
|
|
3770
|
-
if (!hasOwnProperty.call(lodash.prototype, methodName)) {
|
|
3771
|
-
source[methodName] = func;
|
|
3772
|
-
}
|
|
3773
|
-
});
|
|
3774
|
-
return source;
|
|
3775
|
-
}()), { 'chain': false });
|
|
3776
|
-
|
|
3777
|
-
/*------------------------------------------------------------------------*/
|
|
3778
|
-
|
|
3779
|
-
/**
|
|
3780
|
-
* The semantic version number.
|
|
3781
|
-
*
|
|
3782
|
-
* @static
|
|
3783
|
-
* @memberOf _
|
|
3784
|
-
* @type {string}
|
|
3785
|
-
*/
|
|
3786
|
-
lodash.VERSION = VERSION;
|
|
3787
|
-
|
|
3788
|
-
// Add `Array` methods to `lodash.prototype`.
|
|
3789
|
-
baseEach(['pop', 'join', 'replace', 'reverse', 'split', 'push', 'shift', 'sort', 'splice', 'unshift'], function(methodName) {
|
|
3790
|
-
var func = (/^(?:replace|split)$/.test(methodName) ? String.prototype : arrayProto)[methodName],
|
|
3791
|
-
chainName = /^(?:push|sort|unshift)$/.test(methodName) ? 'tap' : 'thru',
|
|
3792
|
-
retUnwrapped = /^(?:pop|join|replace|shift)$/.test(methodName);
|
|
3793
|
-
|
|
3794
|
-
lodash.prototype[methodName] = function() {
|
|
3795
|
-
var args = arguments;
|
|
3796
|
-
if (retUnwrapped && !this.__chain__) {
|
|
3797
|
-
var value = this.value();
|
|
3798
|
-
return func.apply(isArray(value) ? value : [], args);
|
|
3799
|
-
}
|
|
3800
|
-
return this[chainName](function(value) {
|
|
3801
|
-
return func.apply(isArray(value) ? value : [], args);
|
|
3802
|
-
});
|
|
3803
|
-
};
|
|
3804
|
-
});
|
|
3805
|
-
|
|
3806
|
-
// Add chain sequence methods to the `lodash` wrapper.
|
|
3807
|
-
lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue;
|
|
3808
|
-
|
|
3809
|
-
/*--------------------------------------------------------------------------*/
|
|
3810
|
-
|
|
3811
|
-
// Some AMD build optimizers, like r.js, check for condition patterns like:
|
|
3812
|
-
if (typeof define == 'function' && typeof define.amd == 'object' && define.amd) {
|
|
3813
|
-
// Expose Lodash on the global object to prevent errors when Lodash is
|
|
3814
|
-
// loaded by a script tag in the presence of an AMD loader.
|
|
3815
|
-
// See http://requirejs.org/docs/errors.html#mismatch for more details.
|
|
3816
|
-
// Use `_.noConflict` to remove Lodash from the global object.
|
|
3817
|
-
root._ = lodash;
|
|
3818
|
-
|
|
3819
|
-
// Define as an anonymous module so, through path mapping, it can be
|
|
3820
|
-
// referenced as the "underscore" module.
|
|
3821
|
-
define(function() {
|
|
3822
|
-
return lodash;
|
|
3823
|
-
});
|
|
3824
|
-
}
|
|
3825
|
-
// Check for `exports` after `define` in case a build optimizer adds it.
|
|
3826
|
-
else if (freeModule) {
|
|
3827
|
-
// Export for Node.js.
|
|
3828
|
-
(freeModule.exports = lodash)._ = lodash;
|
|
3829
|
-
// Export for CommonJS support.
|
|
3830
|
-
freeExports._ = lodash;
|
|
3831
|
-
}
|
|
3832
|
-
else {
|
|
3833
|
-
// Export to the global object.
|
|
3834
|
-
root._ = lodash;
|
|
3835
|
-
}
|
|
3836
|
-
}.call(this));
|