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,4101 +0,0 @@
|
|
|
1
|
-
/***********************************************************************
|
|
2
|
-
|
|
3
|
-
A JavaScript tokenizer / parser / beautifier / compressor.
|
|
4
|
-
https://github.com/mishoo/UglifyJS2
|
|
5
|
-
|
|
6
|
-
-------------------------------- (C) ---------------------------------
|
|
7
|
-
|
|
8
|
-
Author: Mihai Bazon
|
|
9
|
-
<mihai.bazon@gmail.com>
|
|
10
|
-
http://mihai.bazon.net/blog
|
|
11
|
-
|
|
12
|
-
Distributed under the BSD license:
|
|
13
|
-
|
|
14
|
-
Copyright 2012 (c) Mihai Bazon <mihai.bazon@gmail.com>
|
|
15
|
-
|
|
16
|
-
Redistribution and use in source and binary forms, with or without
|
|
17
|
-
modification, are permitted provided that the following conditions
|
|
18
|
-
are met:
|
|
19
|
-
|
|
20
|
-
* Redistributions of source code must retain the above
|
|
21
|
-
copyright notice, this list of conditions and the following
|
|
22
|
-
disclaimer.
|
|
23
|
-
|
|
24
|
-
* Redistributions in binary form must reproduce the above
|
|
25
|
-
copyright notice, this list of conditions and the following
|
|
26
|
-
disclaimer in the documentation and/or other materials
|
|
27
|
-
provided with the distribution.
|
|
28
|
-
|
|
29
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY
|
|
30
|
-
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
31
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
32
|
-
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
|
|
33
|
-
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
|
34
|
-
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
35
|
-
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
36
|
-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
37
|
-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
|
|
38
|
-
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
39
|
-
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
40
|
-
SUCH DAMAGE.
|
|
41
|
-
|
|
42
|
-
***********************************************************************/
|
|
43
|
-
|
|
44
|
-
"use strict";
|
|
45
|
-
|
|
46
|
-
function Compressor(options, false_by_default) {
|
|
47
|
-
if (!(this instanceof Compressor))
|
|
48
|
-
return new Compressor(options, false_by_default);
|
|
49
|
-
TreeTransformer.call(this, this.before, this.after);
|
|
50
|
-
this.options = defaults(options, {
|
|
51
|
-
angular : false,
|
|
52
|
-
booleans : !false_by_default,
|
|
53
|
-
cascade : !false_by_default,
|
|
54
|
-
collapse_vars : !false_by_default,
|
|
55
|
-
comparisons : !false_by_default,
|
|
56
|
-
conditionals : !false_by_default,
|
|
57
|
-
dead_code : !false_by_default,
|
|
58
|
-
drop_console : false,
|
|
59
|
-
drop_debugger : !false_by_default,
|
|
60
|
-
evaluate : !false_by_default,
|
|
61
|
-
expression : false,
|
|
62
|
-
global_defs : {},
|
|
63
|
-
hoist_funs : !false_by_default,
|
|
64
|
-
hoist_vars : false,
|
|
65
|
-
if_return : !false_by_default,
|
|
66
|
-
join_vars : !false_by_default,
|
|
67
|
-
keep_fargs : true,
|
|
68
|
-
keep_fnames : false,
|
|
69
|
-
keep_infinity : false,
|
|
70
|
-
loops : !false_by_default,
|
|
71
|
-
negate_iife : !false_by_default,
|
|
72
|
-
passes : 1,
|
|
73
|
-
properties : !false_by_default,
|
|
74
|
-
pure_getters : !false_by_default && "strict",
|
|
75
|
-
pure_funcs : null,
|
|
76
|
-
reduce_vars : !false_by_default,
|
|
77
|
-
screw_ie8 : true,
|
|
78
|
-
sequences : !false_by_default,
|
|
79
|
-
side_effects : !false_by_default,
|
|
80
|
-
switches : !false_by_default,
|
|
81
|
-
top_retain : null,
|
|
82
|
-
toplevel : !!(options && options["top_retain"]),
|
|
83
|
-
unsafe : false,
|
|
84
|
-
unsafe_comps : false,
|
|
85
|
-
unsafe_math : false,
|
|
86
|
-
unsafe_proto : false,
|
|
87
|
-
unsafe_regexp : false,
|
|
88
|
-
unused : !false_by_default,
|
|
89
|
-
warnings : true,
|
|
90
|
-
}, true);
|
|
91
|
-
var pure_funcs = this.options["pure_funcs"];
|
|
92
|
-
if (typeof pure_funcs == "function") {
|
|
93
|
-
this.pure_funcs = pure_funcs;
|
|
94
|
-
} else {
|
|
95
|
-
this.pure_funcs = pure_funcs ? function(node) {
|
|
96
|
-
return pure_funcs.indexOf(node.expression.print_to_string()) < 0;
|
|
97
|
-
} : return_true;
|
|
98
|
-
}
|
|
99
|
-
var top_retain = this.options["top_retain"];
|
|
100
|
-
if (top_retain instanceof RegExp) {
|
|
101
|
-
this.top_retain = function(def) {
|
|
102
|
-
return top_retain.test(def.name);
|
|
103
|
-
};
|
|
104
|
-
} else if (typeof top_retain == "function") {
|
|
105
|
-
this.top_retain = top_retain;
|
|
106
|
-
} else if (top_retain) {
|
|
107
|
-
if (typeof top_retain == "string") {
|
|
108
|
-
top_retain = top_retain.split(/,/);
|
|
109
|
-
}
|
|
110
|
-
this.top_retain = function(def) {
|
|
111
|
-
return top_retain.indexOf(def.name) >= 0;
|
|
112
|
-
};
|
|
113
|
-
}
|
|
114
|
-
var sequences = this.options["sequences"];
|
|
115
|
-
this.sequences_limit = sequences == 1 ? 200 : sequences | 0;
|
|
116
|
-
this.warnings_produced = {};
|
|
117
|
-
};
|
|
118
|
-
|
|
119
|
-
Compressor.prototype = new TreeTransformer;
|
|
120
|
-
merge(Compressor.prototype, {
|
|
121
|
-
option: function(key) { return this.options[key] },
|
|
122
|
-
compress: function(node) {
|
|
123
|
-
if (this.option("expression")) {
|
|
124
|
-
node = node.process_expression(true);
|
|
125
|
-
}
|
|
126
|
-
var passes = +this.options.passes || 1;
|
|
127
|
-
for (var pass = 0; pass < passes && pass < 3; ++pass) {
|
|
128
|
-
if (pass > 0 || this.option("reduce_vars"))
|
|
129
|
-
node.reset_opt_flags(this, true);
|
|
130
|
-
node = node.transform(this);
|
|
131
|
-
}
|
|
132
|
-
if (this.option("expression")) {
|
|
133
|
-
node = node.process_expression(false);
|
|
134
|
-
}
|
|
135
|
-
return node;
|
|
136
|
-
},
|
|
137
|
-
info: function() {
|
|
138
|
-
if (this.options.warnings == "verbose") {
|
|
139
|
-
AST_Node.warn.apply(AST_Node, arguments);
|
|
140
|
-
}
|
|
141
|
-
},
|
|
142
|
-
warn: function(text, props) {
|
|
143
|
-
if (this.options.warnings) {
|
|
144
|
-
// only emit unique warnings
|
|
145
|
-
var message = string_template(text, props);
|
|
146
|
-
if (!(message in this.warnings_produced)) {
|
|
147
|
-
this.warnings_produced[message] = true;
|
|
148
|
-
AST_Node.warn.apply(AST_Node, arguments);
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
},
|
|
152
|
-
clear_warnings: function() {
|
|
153
|
-
this.warnings_produced = {};
|
|
154
|
-
},
|
|
155
|
-
before: function(node, descend, in_list) {
|
|
156
|
-
if (node._squeezed) return node;
|
|
157
|
-
var was_scope = false;
|
|
158
|
-
if (node instanceof AST_Scope) {
|
|
159
|
-
node = node.hoist_declarations(this);
|
|
160
|
-
was_scope = true;
|
|
161
|
-
}
|
|
162
|
-
// Before https://github.com/mishoo/UglifyJS2/pull/1602 AST_Node.optimize()
|
|
163
|
-
// would call AST_Node.transform() if a different instance of AST_Node is
|
|
164
|
-
// produced after OPT().
|
|
165
|
-
// This corrupts TreeWalker.stack, which cause AST look-ups to malfunction.
|
|
166
|
-
// Migrate and defer all children's AST_Node.transform() to below, which
|
|
167
|
-
// will now happen after this parent AST_Node has been properly substituted
|
|
168
|
-
// thus gives a consistent AST snapshot.
|
|
169
|
-
descend(node, this);
|
|
170
|
-
// Existing code relies on how AST_Node.optimize() worked, and omitting the
|
|
171
|
-
// following replacement call would result in degraded efficiency of both
|
|
172
|
-
// output and performance.
|
|
173
|
-
descend(node, this);
|
|
174
|
-
var opt = node.optimize(this);
|
|
175
|
-
if (was_scope && opt instanceof AST_Scope) {
|
|
176
|
-
opt.drop_unused(this);
|
|
177
|
-
descend(opt, this);
|
|
178
|
-
}
|
|
179
|
-
if (opt === node) opt._squeezed = true;
|
|
180
|
-
return opt;
|
|
181
|
-
}
|
|
182
|
-
});
|
|
183
|
-
|
|
184
|
-
(function(){
|
|
185
|
-
|
|
186
|
-
function OPT(node, optimizer) {
|
|
187
|
-
node.DEFMETHOD("optimize", function(compressor){
|
|
188
|
-
var self = this;
|
|
189
|
-
if (self._optimized) return self;
|
|
190
|
-
if (compressor.has_directive("use asm")) return self;
|
|
191
|
-
var opt = optimizer(self, compressor);
|
|
192
|
-
opt._optimized = true;
|
|
193
|
-
return opt;
|
|
194
|
-
});
|
|
195
|
-
};
|
|
196
|
-
|
|
197
|
-
OPT(AST_Node, function(self, compressor){
|
|
198
|
-
return self;
|
|
199
|
-
});
|
|
200
|
-
|
|
201
|
-
AST_Node.DEFMETHOD("equivalent_to", function(node){
|
|
202
|
-
return this.TYPE == node.TYPE && this.print_to_string() == node.print_to_string();
|
|
203
|
-
});
|
|
204
|
-
|
|
205
|
-
AST_Node.DEFMETHOD("process_expression", function(insert, compressor) {
|
|
206
|
-
var self = this;
|
|
207
|
-
var tt = new TreeTransformer(function(node) {
|
|
208
|
-
if (insert && node instanceof AST_SimpleStatement) {
|
|
209
|
-
return make_node(AST_Return, node, {
|
|
210
|
-
value: node.body
|
|
211
|
-
});
|
|
212
|
-
}
|
|
213
|
-
if (!insert && node instanceof AST_Return) {
|
|
214
|
-
if (compressor) {
|
|
215
|
-
var value = node.value && node.value.drop_side_effect_free(compressor, true);
|
|
216
|
-
return value ? make_node(AST_SimpleStatement, node, {
|
|
217
|
-
body: value
|
|
218
|
-
}) : make_node(AST_EmptyStatement, node);
|
|
219
|
-
}
|
|
220
|
-
return make_node(AST_SimpleStatement, node, {
|
|
221
|
-
body: node.value || make_node(AST_UnaryPrefix, node, {
|
|
222
|
-
operator: "void",
|
|
223
|
-
expression: make_node(AST_Number, node, {
|
|
224
|
-
value: 0
|
|
225
|
-
})
|
|
226
|
-
})
|
|
227
|
-
});
|
|
228
|
-
}
|
|
229
|
-
if (node instanceof AST_Lambda && node !== self) {
|
|
230
|
-
return node;
|
|
231
|
-
}
|
|
232
|
-
if (node instanceof AST_Block) {
|
|
233
|
-
var index = node.body.length - 1;
|
|
234
|
-
if (index >= 0) {
|
|
235
|
-
node.body[index] = node.body[index].transform(tt);
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
if (node instanceof AST_If) {
|
|
239
|
-
node.body = node.body.transform(tt);
|
|
240
|
-
if (node.alternative) {
|
|
241
|
-
node.alternative = node.alternative.transform(tt);
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
if (node instanceof AST_With) {
|
|
245
|
-
node.body = node.body.transform(tt);
|
|
246
|
-
}
|
|
247
|
-
return node;
|
|
248
|
-
});
|
|
249
|
-
return self.transform(tt);
|
|
250
|
-
});
|
|
251
|
-
|
|
252
|
-
AST_Node.DEFMETHOD("reset_opt_flags", function(compressor, rescan){
|
|
253
|
-
var reduce_vars = rescan && compressor.option("reduce_vars");
|
|
254
|
-
var toplevel = compressor.option("toplevel");
|
|
255
|
-
var safe_ids = Object.create(null);
|
|
256
|
-
var suppressor = new TreeWalker(function(node) {
|
|
257
|
-
if (node instanceof AST_Symbol) {
|
|
258
|
-
var d = node.definition();
|
|
259
|
-
if (node instanceof AST_SymbolRef) d.references.push(node);
|
|
260
|
-
d.fixed = false;
|
|
261
|
-
}
|
|
262
|
-
});
|
|
263
|
-
var tw = new TreeWalker(function(node, descend){
|
|
264
|
-
node._squeezed = false;
|
|
265
|
-
node._optimized = false;
|
|
266
|
-
if (reduce_vars) {
|
|
267
|
-
if (node instanceof AST_Toplevel) node.globals.each(reset_def);
|
|
268
|
-
if (node instanceof AST_Scope) node.variables.each(reset_def);
|
|
269
|
-
if (node instanceof AST_SymbolRef) {
|
|
270
|
-
var d = node.definition();
|
|
271
|
-
d.references.push(node);
|
|
272
|
-
if (d.fixed === undefined || !is_safe(d)
|
|
273
|
-
|| is_modified(node, 0, node.fixed_value() instanceof AST_Lambda)) {
|
|
274
|
-
d.fixed = false;
|
|
275
|
-
} else {
|
|
276
|
-
var parent = tw.parent();
|
|
277
|
-
if (parent instanceof AST_Assign && parent.operator == "=" && node === parent.right
|
|
278
|
-
|| parent instanceof AST_Call && node !== parent.expression
|
|
279
|
-
|| parent instanceof AST_Return && node === parent.value && node.scope !== d.scope
|
|
280
|
-
|| parent instanceof AST_VarDef && node === parent.value) {
|
|
281
|
-
d.escaped = true;
|
|
282
|
-
}
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
if (node instanceof AST_SymbolCatch) {
|
|
286
|
-
node.definition().fixed = false;
|
|
287
|
-
}
|
|
288
|
-
if (node instanceof AST_VarDef) {
|
|
289
|
-
var d = node.name.definition();
|
|
290
|
-
if (d.fixed == null) {
|
|
291
|
-
if (node.value) {
|
|
292
|
-
d.fixed = function() {
|
|
293
|
-
return node.value;
|
|
294
|
-
};
|
|
295
|
-
mark(d, false);
|
|
296
|
-
descend();
|
|
297
|
-
} else {
|
|
298
|
-
d.fixed = null;
|
|
299
|
-
}
|
|
300
|
-
mark(d, true);
|
|
301
|
-
return true;
|
|
302
|
-
} else if (node.value) {
|
|
303
|
-
d.fixed = false;
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
if (node instanceof AST_Defun) {
|
|
307
|
-
var d = node.name.definition();
|
|
308
|
-
if (!toplevel && d.global || is_safe(d)) {
|
|
309
|
-
d.fixed = false;
|
|
310
|
-
} else {
|
|
311
|
-
d.fixed = node;
|
|
312
|
-
mark(d, true);
|
|
313
|
-
}
|
|
314
|
-
var save_ids = safe_ids;
|
|
315
|
-
safe_ids = Object.create(null);
|
|
316
|
-
descend();
|
|
317
|
-
safe_ids = save_ids;
|
|
318
|
-
return true;
|
|
319
|
-
}
|
|
320
|
-
if (node instanceof AST_Function) {
|
|
321
|
-
push();
|
|
322
|
-
var iife;
|
|
323
|
-
if (!node.name
|
|
324
|
-
&& (iife = tw.parent()) instanceof AST_Call
|
|
325
|
-
&& iife.expression === node) {
|
|
326
|
-
// Virtually turn IIFE parameters into variable definitions:
|
|
327
|
-
// (function(a,b) {...})(c,d) => (function() {var a=c,b=d; ...})()
|
|
328
|
-
// So existing transformation rules can work on them.
|
|
329
|
-
node.argnames.forEach(function(arg, i) {
|
|
330
|
-
var d = arg.definition();
|
|
331
|
-
if (!node.uses_arguments && d.fixed === undefined) {
|
|
332
|
-
d.fixed = function() {
|
|
333
|
-
return iife.args[i] || make_node(AST_Undefined, iife);
|
|
334
|
-
};
|
|
335
|
-
mark(d, true);
|
|
336
|
-
} else {
|
|
337
|
-
d.fixed = false;
|
|
338
|
-
}
|
|
339
|
-
});
|
|
340
|
-
}
|
|
341
|
-
descend();
|
|
342
|
-
pop();
|
|
343
|
-
return true;
|
|
344
|
-
}
|
|
345
|
-
if (node instanceof AST_Accessor) {
|
|
346
|
-
var save_ids = safe_ids;
|
|
347
|
-
safe_ids = Object.create(null);
|
|
348
|
-
descend();
|
|
349
|
-
safe_ids = save_ids;
|
|
350
|
-
return true;
|
|
351
|
-
}
|
|
352
|
-
if (node instanceof AST_Binary
|
|
353
|
-
&& (node.operator == "&&" || node.operator == "||")) {
|
|
354
|
-
node.left.walk(tw);
|
|
355
|
-
push();
|
|
356
|
-
node.right.walk(tw);
|
|
357
|
-
pop();
|
|
358
|
-
return true;
|
|
359
|
-
}
|
|
360
|
-
if (node instanceof AST_Conditional) {
|
|
361
|
-
node.condition.walk(tw);
|
|
362
|
-
push();
|
|
363
|
-
node.consequent.walk(tw);
|
|
364
|
-
pop();
|
|
365
|
-
push();
|
|
366
|
-
node.alternative.walk(tw);
|
|
367
|
-
pop();
|
|
368
|
-
return true;
|
|
369
|
-
}
|
|
370
|
-
if (node instanceof AST_If || node instanceof AST_DWLoop) {
|
|
371
|
-
node.condition.walk(tw);
|
|
372
|
-
push();
|
|
373
|
-
node.body.walk(tw);
|
|
374
|
-
pop();
|
|
375
|
-
if (node.alternative) {
|
|
376
|
-
push();
|
|
377
|
-
node.alternative.walk(tw);
|
|
378
|
-
pop();
|
|
379
|
-
}
|
|
380
|
-
return true;
|
|
381
|
-
}
|
|
382
|
-
if (node instanceof AST_LabeledStatement) {
|
|
383
|
-
push();
|
|
384
|
-
node.body.walk(tw);
|
|
385
|
-
pop();
|
|
386
|
-
return true;
|
|
387
|
-
}
|
|
388
|
-
if (node instanceof AST_For) {
|
|
389
|
-
if (node.init) node.init.walk(tw);
|
|
390
|
-
push();
|
|
391
|
-
if (node.condition) node.condition.walk(tw);
|
|
392
|
-
node.body.walk(tw);
|
|
393
|
-
if (node.step) node.step.walk(tw);
|
|
394
|
-
pop();
|
|
395
|
-
return true;
|
|
396
|
-
}
|
|
397
|
-
if (node instanceof AST_ForIn) {
|
|
398
|
-
node.init.walk(suppressor);
|
|
399
|
-
node.object.walk(tw);
|
|
400
|
-
push();
|
|
401
|
-
node.body.walk(tw);
|
|
402
|
-
pop();
|
|
403
|
-
return true;
|
|
404
|
-
}
|
|
405
|
-
if (node instanceof AST_Try) {
|
|
406
|
-
push();
|
|
407
|
-
walk_body(node, tw);
|
|
408
|
-
pop();
|
|
409
|
-
if (node.bcatch) {
|
|
410
|
-
push();
|
|
411
|
-
node.bcatch.walk(tw);
|
|
412
|
-
pop();
|
|
413
|
-
}
|
|
414
|
-
if (node.bfinally) node.bfinally.walk(tw);
|
|
415
|
-
return true;
|
|
416
|
-
}
|
|
417
|
-
if (node instanceof AST_SwitchBranch) {
|
|
418
|
-
push();
|
|
419
|
-
descend();
|
|
420
|
-
pop();
|
|
421
|
-
return true;
|
|
422
|
-
}
|
|
423
|
-
}
|
|
424
|
-
});
|
|
425
|
-
this.walk(tw);
|
|
426
|
-
|
|
427
|
-
function mark(def, safe) {
|
|
428
|
-
safe_ids[def.id] = safe;
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
function is_safe(def) {
|
|
432
|
-
if (safe_ids[def.id]) {
|
|
433
|
-
if (def.fixed == null) {
|
|
434
|
-
var orig = def.orig[0];
|
|
435
|
-
if (orig instanceof AST_SymbolFunarg || orig.name == "arguments") return false;
|
|
436
|
-
def.fixed = make_node(AST_Undefined, orig);
|
|
437
|
-
}
|
|
438
|
-
return true;
|
|
439
|
-
}
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
function push() {
|
|
443
|
-
safe_ids = Object.create(safe_ids);
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
function pop() {
|
|
447
|
-
safe_ids = Object.getPrototypeOf(safe_ids);
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
function reset_def(def) {
|
|
451
|
-
def.escaped = false;
|
|
452
|
-
if (def.scope.uses_eval) {
|
|
453
|
-
def.fixed = false;
|
|
454
|
-
} else if (toplevel || !def.global || def.orig[0] instanceof AST_SymbolConst) {
|
|
455
|
-
def.fixed = undefined;
|
|
456
|
-
} else {
|
|
457
|
-
def.fixed = false;
|
|
458
|
-
}
|
|
459
|
-
def.references = [];
|
|
460
|
-
def.should_replace = undefined;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
function is_modified(node, level, func) {
|
|
464
|
-
var parent = tw.parent(level);
|
|
465
|
-
if (is_lhs(node, parent)
|
|
466
|
-
|| !func && parent instanceof AST_Call && parent.expression === node) {
|
|
467
|
-
return true;
|
|
468
|
-
} else if (parent instanceof AST_PropAccess && parent.expression === node) {
|
|
469
|
-
return !func && is_modified(parent, level + 1);
|
|
470
|
-
}
|
|
471
|
-
}
|
|
472
|
-
});
|
|
473
|
-
|
|
474
|
-
AST_SymbolRef.DEFMETHOD("fixed_value", function() {
|
|
475
|
-
var fixed = this.definition().fixed;
|
|
476
|
-
if (!fixed || fixed instanceof AST_Node) return fixed;
|
|
477
|
-
return fixed();
|
|
478
|
-
});
|
|
479
|
-
|
|
480
|
-
function is_reference_const(ref) {
|
|
481
|
-
if (!(ref instanceof AST_SymbolRef)) return false;
|
|
482
|
-
var orig = ref.definition().orig;
|
|
483
|
-
for (var i = orig.length; --i >= 0;) {
|
|
484
|
-
if (orig[i] instanceof AST_SymbolConst) return true;
|
|
485
|
-
}
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
function find_variable(compressor, name) {
|
|
489
|
-
var scope, i = 0;
|
|
490
|
-
while (scope = compressor.parent(i++)) {
|
|
491
|
-
if (scope instanceof AST_Scope) break;
|
|
492
|
-
if (scope instanceof AST_Catch) {
|
|
493
|
-
scope = scope.argname.definition().scope;
|
|
494
|
-
break;
|
|
495
|
-
}
|
|
496
|
-
}
|
|
497
|
-
return scope.find_variable(name);
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
function make_node(ctor, orig, props) {
|
|
501
|
-
if (!props) props = {};
|
|
502
|
-
if (orig) {
|
|
503
|
-
if (!props.start) props.start = orig.start;
|
|
504
|
-
if (!props.end) props.end = orig.end;
|
|
505
|
-
}
|
|
506
|
-
return new ctor(props);
|
|
507
|
-
};
|
|
508
|
-
|
|
509
|
-
function make_node_from_constant(val, orig) {
|
|
510
|
-
switch (typeof val) {
|
|
511
|
-
case "string":
|
|
512
|
-
return make_node(AST_String, orig, {
|
|
513
|
-
value: val
|
|
514
|
-
});
|
|
515
|
-
case "number":
|
|
516
|
-
if (isNaN(val)) return make_node(AST_NaN, orig);
|
|
517
|
-
if (isFinite(val)) {
|
|
518
|
-
return 1 / val < 0 ? make_node(AST_UnaryPrefix, orig, {
|
|
519
|
-
operator: "-",
|
|
520
|
-
expression: make_node(AST_Number, orig, { value: -val })
|
|
521
|
-
}) : make_node(AST_Number, orig, { value: val });
|
|
522
|
-
}
|
|
523
|
-
return val < 0 ? make_node(AST_UnaryPrefix, orig, {
|
|
524
|
-
operator: "-",
|
|
525
|
-
expression: make_node(AST_Infinity, orig)
|
|
526
|
-
}) : make_node(AST_Infinity, orig);
|
|
527
|
-
case "boolean":
|
|
528
|
-
return make_node(val ? AST_True : AST_False, orig);
|
|
529
|
-
case "undefined":
|
|
530
|
-
return make_node(AST_Undefined, orig);
|
|
531
|
-
default:
|
|
532
|
-
if (val === null) {
|
|
533
|
-
return make_node(AST_Null, orig, { value: null });
|
|
534
|
-
}
|
|
535
|
-
if (val instanceof RegExp) {
|
|
536
|
-
return make_node(AST_RegExp, orig, { value: val });
|
|
537
|
-
}
|
|
538
|
-
throw new Error(string_template("Can't handle constant of type: {type}", {
|
|
539
|
-
type: typeof val
|
|
540
|
-
}));
|
|
541
|
-
}
|
|
542
|
-
};
|
|
543
|
-
|
|
544
|
-
// we shouldn't compress (1,func)(something) to
|
|
545
|
-
// func(something) because that changes the meaning of
|
|
546
|
-
// the func (becomes lexical instead of global).
|
|
547
|
-
function maintain_this_binding(parent, orig, val) {
|
|
548
|
-
if (parent instanceof AST_UnaryPrefix && parent.operator == "delete"
|
|
549
|
-
|| parent instanceof AST_Call && parent.expression === orig
|
|
550
|
-
&& (val instanceof AST_PropAccess || val instanceof AST_SymbolRef && val.name == "eval")) {
|
|
551
|
-
return make_node(AST_Seq, orig, {
|
|
552
|
-
car: make_node(AST_Number, orig, {
|
|
553
|
-
value: 0
|
|
554
|
-
}),
|
|
555
|
-
cdr: val
|
|
556
|
-
});
|
|
557
|
-
}
|
|
558
|
-
return val;
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
function as_statement_array(thing) {
|
|
562
|
-
if (thing === null) return [];
|
|
563
|
-
if (thing instanceof AST_BlockStatement) return thing.body;
|
|
564
|
-
if (thing instanceof AST_EmptyStatement) return [];
|
|
565
|
-
if (thing instanceof AST_Statement) return [ thing ];
|
|
566
|
-
throw new Error("Can't convert thing to statement array");
|
|
567
|
-
};
|
|
568
|
-
|
|
569
|
-
function is_empty(thing) {
|
|
570
|
-
if (thing === null) return true;
|
|
571
|
-
if (thing instanceof AST_EmptyStatement) return true;
|
|
572
|
-
if (thing instanceof AST_BlockStatement) return thing.body.length == 0;
|
|
573
|
-
return false;
|
|
574
|
-
};
|
|
575
|
-
|
|
576
|
-
function loop_body(x) {
|
|
577
|
-
if (x instanceof AST_Switch) return x;
|
|
578
|
-
if (x instanceof AST_For || x instanceof AST_ForIn || x instanceof AST_DWLoop) {
|
|
579
|
-
return (x.body instanceof AST_BlockStatement ? x.body : x);
|
|
580
|
-
}
|
|
581
|
-
return x;
|
|
582
|
-
};
|
|
583
|
-
|
|
584
|
-
function is_iife_call(node) {
|
|
585
|
-
if (node instanceof AST_Call && !(node instanceof AST_New)) {
|
|
586
|
-
return node.expression instanceof AST_Function || is_iife_call(node.expression);
|
|
587
|
-
}
|
|
588
|
-
return false;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
function tighten_body(statements, compressor) {
|
|
592
|
-
var CHANGED, max_iter = 10;
|
|
593
|
-
do {
|
|
594
|
-
CHANGED = false;
|
|
595
|
-
if (compressor.option("angular")) {
|
|
596
|
-
statements = process_for_angular(statements);
|
|
597
|
-
}
|
|
598
|
-
statements = eliminate_spurious_blocks(statements);
|
|
599
|
-
if (compressor.option("dead_code")) {
|
|
600
|
-
statements = eliminate_dead_code(statements, compressor);
|
|
601
|
-
}
|
|
602
|
-
if (compressor.option("if_return")) {
|
|
603
|
-
statements = handle_if_return(statements, compressor);
|
|
604
|
-
}
|
|
605
|
-
if (compressor.sequences_limit > 0) {
|
|
606
|
-
statements = sequencesize(statements, compressor);
|
|
607
|
-
}
|
|
608
|
-
if (compressor.option("join_vars")) {
|
|
609
|
-
statements = join_consecutive_vars(statements, compressor);
|
|
610
|
-
}
|
|
611
|
-
if (compressor.option("collapse_vars")) {
|
|
612
|
-
statements = collapse_single_use_vars(statements, compressor);
|
|
613
|
-
}
|
|
614
|
-
} while (CHANGED && max_iter-- > 0);
|
|
615
|
-
|
|
616
|
-
return statements;
|
|
617
|
-
|
|
618
|
-
function collapse_single_use_vars(statements, compressor) {
|
|
619
|
-
// Iterate statements backwards looking for a statement with a var/const
|
|
620
|
-
// declaration immediately preceding it. Grab the rightmost var definition
|
|
621
|
-
// and if it has exactly one reference then attempt to replace its reference
|
|
622
|
-
// in the statement with the var value and then erase the var definition.
|
|
623
|
-
|
|
624
|
-
var self = compressor.self();
|
|
625
|
-
var var_defs_removed = false;
|
|
626
|
-
var toplevel = compressor.option("toplevel");
|
|
627
|
-
for (var stat_index = statements.length; --stat_index >= 0;) {
|
|
628
|
-
var stat = statements[stat_index];
|
|
629
|
-
if (stat instanceof AST_Definitions) continue;
|
|
630
|
-
|
|
631
|
-
// Process child blocks of statement if present.
|
|
632
|
-
[stat, stat.body, stat.alternative, stat.bcatch, stat.bfinally].forEach(function(node) {
|
|
633
|
-
node && node.body && collapse_single_use_vars(node.body, compressor);
|
|
634
|
-
});
|
|
635
|
-
|
|
636
|
-
// The variable definition must precede a statement.
|
|
637
|
-
if (stat_index <= 0) break;
|
|
638
|
-
var prev_stat_index = stat_index - 1;
|
|
639
|
-
var prev_stat = statements[prev_stat_index];
|
|
640
|
-
if (!(prev_stat instanceof AST_Definitions)) continue;
|
|
641
|
-
var var_defs = prev_stat.definitions;
|
|
642
|
-
if (var_defs == null) continue;
|
|
643
|
-
|
|
644
|
-
var var_names_seen = {};
|
|
645
|
-
var side_effects_encountered = false;
|
|
646
|
-
var lvalues_encountered = false;
|
|
647
|
-
var lvalues = {};
|
|
648
|
-
|
|
649
|
-
// Scan variable definitions from right to left.
|
|
650
|
-
for (var var_defs_index = var_defs.length; --var_defs_index >= 0;) {
|
|
651
|
-
|
|
652
|
-
// Obtain var declaration and var name with basic sanity check.
|
|
653
|
-
var var_decl = var_defs[var_defs_index];
|
|
654
|
-
if (var_decl.value == null) break;
|
|
655
|
-
var var_name = var_decl.name.name;
|
|
656
|
-
if (!var_name || !var_name.length) break;
|
|
657
|
-
|
|
658
|
-
// Bail if we've seen a var definition of same name before.
|
|
659
|
-
if (var_name in var_names_seen) break;
|
|
660
|
-
var_names_seen[var_name] = true;
|
|
661
|
-
|
|
662
|
-
// Only interested in cases with just one reference to the variable.
|
|
663
|
-
var def = self.find_variable && self.find_variable(var_name);
|
|
664
|
-
if (!def || !def.references || def.references.length !== 1
|
|
665
|
-
|| var_name == "arguments" || (!toplevel && def.global)) {
|
|
666
|
-
side_effects_encountered = true;
|
|
667
|
-
continue;
|
|
668
|
-
}
|
|
669
|
-
var ref = def.references[0];
|
|
670
|
-
|
|
671
|
-
// Don't replace ref if eval() or with statement in scope.
|
|
672
|
-
if (ref.scope.uses_eval || ref.scope.uses_with) break;
|
|
673
|
-
|
|
674
|
-
// Constant single use vars can be replaced in any scope.
|
|
675
|
-
if (var_decl.value.is_constant()) {
|
|
676
|
-
var ctt = new TreeTransformer(function(node) {
|
|
677
|
-
var parent = ctt.parent();
|
|
678
|
-
if (parent instanceof AST_IterationStatement
|
|
679
|
-
&& (parent.condition === node || parent.init === node)) {
|
|
680
|
-
return node;
|
|
681
|
-
}
|
|
682
|
-
if (node === ref)
|
|
683
|
-
return replace_var(node, parent, true);
|
|
684
|
-
});
|
|
685
|
-
stat.transform(ctt);
|
|
686
|
-
continue;
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
// Restrict var replacement to constants if side effects encountered.
|
|
690
|
-
if (side_effects_encountered |= lvalues_encountered) continue;
|
|
691
|
-
|
|
692
|
-
var value_has_side_effects = var_decl.value.has_side_effects(compressor);
|
|
693
|
-
// Non-constant single use vars can only be replaced in same scope.
|
|
694
|
-
if (ref.scope !== self) {
|
|
695
|
-
side_effects_encountered |= value_has_side_effects;
|
|
696
|
-
continue;
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
// Detect lvalues in var value.
|
|
700
|
-
var tw = new TreeWalker(function(node){
|
|
701
|
-
if (node instanceof AST_SymbolRef && is_lvalue(node, tw.parent())) {
|
|
702
|
-
lvalues[node.name] = lvalues_encountered = true;
|
|
703
|
-
}
|
|
704
|
-
});
|
|
705
|
-
var_decl.value.walk(tw);
|
|
706
|
-
|
|
707
|
-
// Replace the non-constant single use var in statement if side effect free.
|
|
708
|
-
var unwind = false;
|
|
709
|
-
var tt = new TreeTransformer(
|
|
710
|
-
function preorder(node) {
|
|
711
|
-
if (unwind) return node;
|
|
712
|
-
var parent = tt.parent();
|
|
713
|
-
if (node instanceof AST_Lambda
|
|
714
|
-
|| node instanceof AST_Try
|
|
715
|
-
|| node instanceof AST_With
|
|
716
|
-
|| node instanceof AST_Case
|
|
717
|
-
|| node instanceof AST_IterationStatement
|
|
718
|
-
|| (parent instanceof AST_If && node !== parent.condition)
|
|
719
|
-
|| (parent instanceof AST_Conditional && node !== parent.condition)
|
|
720
|
-
|| (node instanceof AST_SymbolRef
|
|
721
|
-
&& value_has_side_effects
|
|
722
|
-
&& !are_references_in_scope(node.definition(), self))
|
|
723
|
-
|| (parent instanceof AST_Binary
|
|
724
|
-
&& (parent.operator == "&&" || parent.operator == "||")
|
|
725
|
-
&& node === parent.right)
|
|
726
|
-
|| (parent instanceof AST_Switch && node !== parent.expression)) {
|
|
727
|
-
return side_effects_encountered = unwind = true, node;
|
|
728
|
-
}
|
|
729
|
-
function are_references_in_scope(def, scope) {
|
|
730
|
-
if (def.orig.length === 1
|
|
731
|
-
&& def.orig[0] instanceof AST_SymbolDefun) return true;
|
|
732
|
-
if (def.scope !== scope) return false;
|
|
733
|
-
var refs = def.references;
|
|
734
|
-
for (var i = 0, len = refs.length; i < len; i++) {
|
|
735
|
-
if (refs[i].scope !== scope) return false;
|
|
736
|
-
}
|
|
737
|
-
return true;
|
|
738
|
-
}
|
|
739
|
-
},
|
|
740
|
-
function postorder(node) {
|
|
741
|
-
if (unwind) return node;
|
|
742
|
-
if (node === ref)
|
|
743
|
-
return unwind = true, replace_var(node, tt.parent(), false);
|
|
744
|
-
if (side_effects_encountered |= node.has_side_effects(compressor))
|
|
745
|
-
return unwind = true, node;
|
|
746
|
-
if (lvalues_encountered && node instanceof AST_SymbolRef && node.name in lvalues) {
|
|
747
|
-
side_effects_encountered = true;
|
|
748
|
-
return unwind = true, node;
|
|
749
|
-
}
|
|
750
|
-
}
|
|
751
|
-
);
|
|
752
|
-
stat.transform(tt);
|
|
753
|
-
}
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
// Remove extraneous empty statments in block after removing var definitions.
|
|
757
|
-
// Leave at least one statement in `statements`.
|
|
758
|
-
if (var_defs_removed) for (var i = statements.length; --i >= 0;) {
|
|
759
|
-
if (statements.length > 1 && statements[i] instanceof AST_EmptyStatement)
|
|
760
|
-
statements.splice(i, 1);
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
return statements;
|
|
764
|
-
|
|
765
|
-
function is_lvalue(node, parent) {
|
|
766
|
-
return node instanceof AST_SymbolRef && is_lhs(node, parent);
|
|
767
|
-
}
|
|
768
|
-
function replace_var(node, parent, is_constant) {
|
|
769
|
-
if (is_lvalue(node, parent)) return node;
|
|
770
|
-
|
|
771
|
-
// Remove var definition and return its value to the TreeTransformer to replace.
|
|
772
|
-
var value = maintain_this_binding(parent, node, var_decl.value);
|
|
773
|
-
var_decl.value = null;
|
|
774
|
-
|
|
775
|
-
var_defs.splice(var_defs_index, 1);
|
|
776
|
-
if (var_defs.length === 0) {
|
|
777
|
-
statements[prev_stat_index] = make_node(AST_EmptyStatement, self);
|
|
778
|
-
var_defs_removed = true;
|
|
779
|
-
}
|
|
780
|
-
// Further optimize statement after substitution.
|
|
781
|
-
stat.reset_opt_flags(compressor);
|
|
782
|
-
|
|
783
|
-
compressor.info("Collapsing " + (is_constant ? "constant" : "variable") +
|
|
784
|
-
" " + var_name + " [{file}:{line},{col}]", node.start);
|
|
785
|
-
CHANGED = true;
|
|
786
|
-
return value;
|
|
787
|
-
}
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
function process_for_angular(statements) {
|
|
791
|
-
function has_inject(comment) {
|
|
792
|
-
return /@ngInject/.test(comment.value);
|
|
793
|
-
}
|
|
794
|
-
function make_arguments_names_list(func) {
|
|
795
|
-
return func.argnames.map(function(sym){
|
|
796
|
-
return make_node(AST_String, sym, { value: sym.name });
|
|
797
|
-
});
|
|
798
|
-
}
|
|
799
|
-
function make_array(orig, elements) {
|
|
800
|
-
return make_node(AST_Array, orig, { elements: elements });
|
|
801
|
-
}
|
|
802
|
-
function make_injector(func, name) {
|
|
803
|
-
return make_node(AST_SimpleStatement, func, {
|
|
804
|
-
body: make_node(AST_Assign, func, {
|
|
805
|
-
operator: "=",
|
|
806
|
-
left: make_node(AST_Dot, name, {
|
|
807
|
-
expression: make_node(AST_SymbolRef, name, name),
|
|
808
|
-
property: "$inject"
|
|
809
|
-
}),
|
|
810
|
-
right: make_array(func, make_arguments_names_list(func))
|
|
811
|
-
})
|
|
812
|
-
});
|
|
813
|
-
}
|
|
814
|
-
function check_expression(body) {
|
|
815
|
-
if (body && body.args) {
|
|
816
|
-
// if this is a function call check all of arguments passed
|
|
817
|
-
body.args.forEach(function(argument, index, array) {
|
|
818
|
-
var comments = argument.start.comments_before;
|
|
819
|
-
// if the argument is function preceded by @ngInject
|
|
820
|
-
if (argument instanceof AST_Lambda && comments.length && has_inject(comments[0])) {
|
|
821
|
-
// replace the function with an array of names of its parameters and function at the end
|
|
822
|
-
array[index] = make_array(argument, make_arguments_names_list(argument).concat(argument));
|
|
823
|
-
}
|
|
824
|
-
});
|
|
825
|
-
// if this is chained call check previous one recursively
|
|
826
|
-
if (body.expression && body.expression.expression) {
|
|
827
|
-
check_expression(body.expression.expression);
|
|
828
|
-
}
|
|
829
|
-
}
|
|
830
|
-
}
|
|
831
|
-
return statements.reduce(function(a, stat){
|
|
832
|
-
a.push(stat);
|
|
833
|
-
|
|
834
|
-
if (stat.body && stat.body.args) {
|
|
835
|
-
check_expression(stat.body);
|
|
836
|
-
} else {
|
|
837
|
-
var token = stat.start;
|
|
838
|
-
var comments = token.comments_before;
|
|
839
|
-
if (comments && comments.length > 0) {
|
|
840
|
-
var last = comments.pop();
|
|
841
|
-
if (has_inject(last)) {
|
|
842
|
-
// case 1: defun
|
|
843
|
-
if (stat instanceof AST_Defun) {
|
|
844
|
-
a.push(make_injector(stat, stat.name));
|
|
845
|
-
}
|
|
846
|
-
else if (stat instanceof AST_Definitions) {
|
|
847
|
-
stat.definitions.forEach(function(def) {
|
|
848
|
-
if (def.value && def.value instanceof AST_Lambda) {
|
|
849
|
-
a.push(make_injector(def.value, def.name));
|
|
850
|
-
}
|
|
851
|
-
});
|
|
852
|
-
}
|
|
853
|
-
else {
|
|
854
|
-
compressor.warn("Unknown statement marked with @ngInject [{file}:{line},{col}]", token);
|
|
855
|
-
}
|
|
856
|
-
}
|
|
857
|
-
}
|
|
858
|
-
}
|
|
859
|
-
|
|
860
|
-
return a;
|
|
861
|
-
}, []);
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
function eliminate_spurious_blocks(statements) {
|
|
865
|
-
var seen_dirs = [];
|
|
866
|
-
return statements.reduce(function(a, stat){
|
|
867
|
-
if (stat instanceof AST_BlockStatement) {
|
|
868
|
-
CHANGED = true;
|
|
869
|
-
a.push.apply(a, eliminate_spurious_blocks(stat.body));
|
|
870
|
-
} else if (stat instanceof AST_EmptyStatement) {
|
|
871
|
-
CHANGED = true;
|
|
872
|
-
} else if (stat instanceof AST_Directive) {
|
|
873
|
-
if (seen_dirs.indexOf(stat.value) < 0) {
|
|
874
|
-
a.push(stat);
|
|
875
|
-
seen_dirs.push(stat.value);
|
|
876
|
-
} else {
|
|
877
|
-
CHANGED = true;
|
|
878
|
-
}
|
|
879
|
-
} else {
|
|
880
|
-
a.push(stat);
|
|
881
|
-
}
|
|
882
|
-
return a;
|
|
883
|
-
}, []);
|
|
884
|
-
};
|
|
885
|
-
|
|
886
|
-
function handle_if_return(statements, compressor) {
|
|
887
|
-
var self = compressor.self();
|
|
888
|
-
var multiple_if_returns = has_multiple_if_returns(statements);
|
|
889
|
-
var in_lambda = self instanceof AST_Lambda;
|
|
890
|
-
var ret = []; // Optimized statements, build from tail to front
|
|
891
|
-
loop: for (var i = statements.length; --i >= 0;) {
|
|
892
|
-
var stat = statements[i];
|
|
893
|
-
switch (true) {
|
|
894
|
-
case (in_lambda && stat instanceof AST_Return && !stat.value && ret.length == 0):
|
|
895
|
-
CHANGED = true;
|
|
896
|
-
// note, ret.length is probably always zero
|
|
897
|
-
// because we drop unreachable code before this
|
|
898
|
-
// step. nevertheless, it's good to check.
|
|
899
|
-
continue loop;
|
|
900
|
-
case stat instanceof AST_If:
|
|
901
|
-
if (stat.body instanceof AST_Return) {
|
|
902
|
-
//---
|
|
903
|
-
// pretty silly case, but:
|
|
904
|
-
// if (foo()) return; return; ==> foo(); return;
|
|
905
|
-
if (((in_lambda && ret.length == 0)
|
|
906
|
-
|| (ret[0] instanceof AST_Return && !ret[0].value))
|
|
907
|
-
&& !stat.body.value && !stat.alternative) {
|
|
908
|
-
CHANGED = true;
|
|
909
|
-
var cond = make_node(AST_SimpleStatement, stat.condition, {
|
|
910
|
-
body: stat.condition
|
|
911
|
-
});
|
|
912
|
-
ret.unshift(cond);
|
|
913
|
-
continue loop;
|
|
914
|
-
}
|
|
915
|
-
//---
|
|
916
|
-
// if (foo()) return x; return y; ==> return foo() ? x : y;
|
|
917
|
-
if (ret[0] instanceof AST_Return && stat.body.value && ret[0].value && !stat.alternative) {
|
|
918
|
-
CHANGED = true;
|
|
919
|
-
stat = stat.clone();
|
|
920
|
-
stat.alternative = ret[0];
|
|
921
|
-
ret[0] = stat.transform(compressor);
|
|
922
|
-
continue loop;
|
|
923
|
-
}
|
|
924
|
-
//---
|
|
925
|
-
// if (foo()) return x; [ return ; ] ==> return foo() ? x : undefined;
|
|
926
|
-
if (multiple_if_returns && (ret.length == 0 || ret[0] instanceof AST_Return)
|
|
927
|
-
&& stat.body.value && !stat.alternative && in_lambda) {
|
|
928
|
-
CHANGED = true;
|
|
929
|
-
stat = stat.clone();
|
|
930
|
-
stat.alternative = ret[0] || make_node(AST_Return, stat, {
|
|
931
|
-
value: null
|
|
932
|
-
});
|
|
933
|
-
ret[0] = stat.transform(compressor);
|
|
934
|
-
continue loop;
|
|
935
|
-
}
|
|
936
|
-
//---
|
|
937
|
-
// if (foo()) return; [ else x... ]; y... ==> if (!foo()) { x...; y... }
|
|
938
|
-
if (!stat.body.value && in_lambda) {
|
|
939
|
-
CHANGED = true;
|
|
940
|
-
stat = stat.clone();
|
|
941
|
-
stat.condition = stat.condition.negate(compressor);
|
|
942
|
-
var body = as_statement_array(stat.alternative).concat(ret);
|
|
943
|
-
var funs = extract_functions_from_statement_array(body);
|
|
944
|
-
stat.body = make_node(AST_BlockStatement, stat, {
|
|
945
|
-
body: body
|
|
946
|
-
});
|
|
947
|
-
stat.alternative = null;
|
|
948
|
-
ret = funs.concat([ stat.transform(compressor) ]);
|
|
949
|
-
continue loop;
|
|
950
|
-
}
|
|
951
|
-
|
|
952
|
-
//---
|
|
953
|
-
// if (a) return b; if (c) return d; e; ==> return a ? b : c ? d : void e;
|
|
954
|
-
//
|
|
955
|
-
// if sequences is not enabled, this can lead to an endless loop (issue #866).
|
|
956
|
-
// however, with sequences on this helps producing slightly better output for
|
|
957
|
-
// the example code.
|
|
958
|
-
if (compressor.option("sequences")
|
|
959
|
-
&& i > 0 && statements[i - 1] instanceof AST_If && statements[i - 1].body instanceof AST_Return
|
|
960
|
-
&& ret.length == 1 && in_lambda && ret[0] instanceof AST_SimpleStatement
|
|
961
|
-
&& !stat.alternative) {
|
|
962
|
-
CHANGED = true;
|
|
963
|
-
ret.push(make_node(AST_Return, ret[0], {
|
|
964
|
-
value: null
|
|
965
|
-
}).transform(compressor));
|
|
966
|
-
ret.unshift(stat);
|
|
967
|
-
continue loop;
|
|
968
|
-
}
|
|
969
|
-
}
|
|
970
|
-
|
|
971
|
-
var ab = aborts(stat.body);
|
|
972
|
-
var lct = ab instanceof AST_LoopControl ? compressor.loopcontrol_target(ab) : null;
|
|
973
|
-
if (ab && ((ab instanceof AST_Return && !ab.value && in_lambda)
|
|
974
|
-
|| (ab instanceof AST_Continue && self === loop_body(lct))
|
|
975
|
-
|| (ab instanceof AST_Break && lct instanceof AST_BlockStatement && self === lct))) {
|
|
976
|
-
if (ab.label) {
|
|
977
|
-
remove(ab.label.thedef.references, ab);
|
|
978
|
-
}
|
|
979
|
-
CHANGED = true;
|
|
980
|
-
var body = as_statement_array(stat.body).slice(0, -1);
|
|
981
|
-
stat = stat.clone();
|
|
982
|
-
stat.condition = stat.condition.negate(compressor);
|
|
983
|
-
stat.body = make_node(AST_BlockStatement, stat, {
|
|
984
|
-
body: as_statement_array(stat.alternative).concat(ret)
|
|
985
|
-
});
|
|
986
|
-
stat.alternative = make_node(AST_BlockStatement, stat, {
|
|
987
|
-
body: body
|
|
988
|
-
});
|
|
989
|
-
ret = [ stat.transform(compressor) ];
|
|
990
|
-
continue loop;
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
var ab = aborts(stat.alternative);
|
|
994
|
-
var lct = ab instanceof AST_LoopControl ? compressor.loopcontrol_target(ab) : null;
|
|
995
|
-
if (ab && ((ab instanceof AST_Return && !ab.value && in_lambda)
|
|
996
|
-
|| (ab instanceof AST_Continue && self === loop_body(lct))
|
|
997
|
-
|| (ab instanceof AST_Break && lct instanceof AST_BlockStatement && self === lct))) {
|
|
998
|
-
if (ab.label) {
|
|
999
|
-
remove(ab.label.thedef.references, ab);
|
|
1000
|
-
}
|
|
1001
|
-
CHANGED = true;
|
|
1002
|
-
stat = stat.clone();
|
|
1003
|
-
stat.body = make_node(AST_BlockStatement, stat.body, {
|
|
1004
|
-
body: as_statement_array(stat.body).concat(ret)
|
|
1005
|
-
});
|
|
1006
|
-
stat.alternative = make_node(AST_BlockStatement, stat.alternative, {
|
|
1007
|
-
body: as_statement_array(stat.alternative).slice(0, -1)
|
|
1008
|
-
});
|
|
1009
|
-
ret = [ stat.transform(compressor) ];
|
|
1010
|
-
continue loop;
|
|
1011
|
-
}
|
|
1012
|
-
|
|
1013
|
-
ret.unshift(stat);
|
|
1014
|
-
break;
|
|
1015
|
-
default:
|
|
1016
|
-
ret.unshift(stat);
|
|
1017
|
-
break;
|
|
1018
|
-
}
|
|
1019
|
-
}
|
|
1020
|
-
return ret;
|
|
1021
|
-
|
|
1022
|
-
function has_multiple_if_returns(statements) {
|
|
1023
|
-
var n = 0;
|
|
1024
|
-
for (var i = statements.length; --i >= 0;) {
|
|
1025
|
-
var stat = statements[i];
|
|
1026
|
-
if (stat instanceof AST_If && stat.body instanceof AST_Return) {
|
|
1027
|
-
if (++n > 1) return true;
|
|
1028
|
-
}
|
|
1029
|
-
}
|
|
1030
|
-
return false;
|
|
1031
|
-
}
|
|
1032
|
-
};
|
|
1033
|
-
|
|
1034
|
-
function eliminate_dead_code(statements, compressor) {
|
|
1035
|
-
var has_quit = false;
|
|
1036
|
-
var orig = statements.length;
|
|
1037
|
-
var self = compressor.self();
|
|
1038
|
-
statements = statements.reduce(function(a, stat){
|
|
1039
|
-
if (has_quit) {
|
|
1040
|
-
extract_declarations_from_unreachable_code(compressor, stat, a);
|
|
1041
|
-
} else {
|
|
1042
|
-
if (stat instanceof AST_LoopControl) {
|
|
1043
|
-
var lct = compressor.loopcontrol_target(stat);
|
|
1044
|
-
if ((stat instanceof AST_Break
|
|
1045
|
-
&& !(lct instanceof AST_IterationStatement)
|
|
1046
|
-
&& loop_body(lct) === self) || (stat instanceof AST_Continue
|
|
1047
|
-
&& loop_body(lct) === self)) {
|
|
1048
|
-
if (stat.label) {
|
|
1049
|
-
remove(stat.label.thedef.references, stat);
|
|
1050
|
-
}
|
|
1051
|
-
} else {
|
|
1052
|
-
a.push(stat);
|
|
1053
|
-
}
|
|
1054
|
-
} else {
|
|
1055
|
-
a.push(stat);
|
|
1056
|
-
}
|
|
1057
|
-
if (aborts(stat)) has_quit = true;
|
|
1058
|
-
}
|
|
1059
|
-
return a;
|
|
1060
|
-
}, []);
|
|
1061
|
-
CHANGED = statements.length != orig;
|
|
1062
|
-
return statements;
|
|
1063
|
-
};
|
|
1064
|
-
|
|
1065
|
-
function sequencesize(statements, compressor) {
|
|
1066
|
-
if (statements.length < 2) return statements;
|
|
1067
|
-
var seq = [], ret = [];
|
|
1068
|
-
function push_seq() {
|
|
1069
|
-
seq = AST_Seq.from_array(seq);
|
|
1070
|
-
if (seq) ret.push(make_node(AST_SimpleStatement, seq, {
|
|
1071
|
-
body: seq
|
|
1072
|
-
}));
|
|
1073
|
-
seq = [];
|
|
1074
|
-
};
|
|
1075
|
-
statements.forEach(function(stat){
|
|
1076
|
-
if (stat instanceof AST_SimpleStatement) {
|
|
1077
|
-
if (seqLength(seq) >= compressor.sequences_limit) push_seq();
|
|
1078
|
-
var body = stat.body;
|
|
1079
|
-
if (seq.length > 0) body = body.drop_side_effect_free(compressor);
|
|
1080
|
-
if (body) seq.push(body);
|
|
1081
|
-
} else {
|
|
1082
|
-
push_seq();
|
|
1083
|
-
ret.push(stat);
|
|
1084
|
-
}
|
|
1085
|
-
});
|
|
1086
|
-
push_seq();
|
|
1087
|
-
ret = sequencesize_2(ret, compressor);
|
|
1088
|
-
CHANGED = ret.length != statements.length;
|
|
1089
|
-
return ret;
|
|
1090
|
-
};
|
|
1091
|
-
|
|
1092
|
-
function seqLength(a) {
|
|
1093
|
-
for (var len = 0, i = 0; i < a.length; ++i) {
|
|
1094
|
-
var stat = a[i];
|
|
1095
|
-
if (stat instanceof AST_Seq) {
|
|
1096
|
-
len += stat.len();
|
|
1097
|
-
} else {
|
|
1098
|
-
len++;
|
|
1099
|
-
}
|
|
1100
|
-
}
|
|
1101
|
-
return len;
|
|
1102
|
-
};
|
|
1103
|
-
|
|
1104
|
-
function sequencesize_2(statements, compressor) {
|
|
1105
|
-
function cons_seq(right) {
|
|
1106
|
-
ret.pop();
|
|
1107
|
-
var left = prev.body;
|
|
1108
|
-
if (left instanceof AST_Seq) {
|
|
1109
|
-
left.add(right);
|
|
1110
|
-
} else {
|
|
1111
|
-
left = AST_Seq.cons(left, right);
|
|
1112
|
-
}
|
|
1113
|
-
return left.transform(compressor);
|
|
1114
|
-
};
|
|
1115
|
-
var ret = [], prev = null;
|
|
1116
|
-
statements.forEach(function(stat){
|
|
1117
|
-
if (prev) {
|
|
1118
|
-
if (stat instanceof AST_For) {
|
|
1119
|
-
var opera = {};
|
|
1120
|
-
try {
|
|
1121
|
-
prev.body.walk(new TreeWalker(function(node){
|
|
1122
|
-
if (node instanceof AST_Binary && node.operator == "in")
|
|
1123
|
-
throw opera;
|
|
1124
|
-
}));
|
|
1125
|
-
if (stat.init && !(stat.init instanceof AST_Definitions)) {
|
|
1126
|
-
stat.init = cons_seq(stat.init);
|
|
1127
|
-
}
|
|
1128
|
-
else if (!stat.init) {
|
|
1129
|
-
stat.init = prev.body.drop_side_effect_free(compressor);
|
|
1130
|
-
ret.pop();
|
|
1131
|
-
}
|
|
1132
|
-
} catch(ex) {
|
|
1133
|
-
if (ex !== opera) throw ex;
|
|
1134
|
-
}
|
|
1135
|
-
}
|
|
1136
|
-
else if (stat instanceof AST_If) {
|
|
1137
|
-
stat.condition = cons_seq(stat.condition);
|
|
1138
|
-
}
|
|
1139
|
-
else if (stat instanceof AST_With) {
|
|
1140
|
-
stat.expression = cons_seq(stat.expression);
|
|
1141
|
-
}
|
|
1142
|
-
else if (stat instanceof AST_Exit && stat.value) {
|
|
1143
|
-
stat.value = cons_seq(stat.value);
|
|
1144
|
-
}
|
|
1145
|
-
else if (stat instanceof AST_Exit) {
|
|
1146
|
-
stat.value = cons_seq(make_node(AST_Undefined, stat).transform(compressor));
|
|
1147
|
-
}
|
|
1148
|
-
else if (stat instanceof AST_Switch) {
|
|
1149
|
-
stat.expression = cons_seq(stat.expression);
|
|
1150
|
-
}
|
|
1151
|
-
}
|
|
1152
|
-
ret.push(stat);
|
|
1153
|
-
prev = stat instanceof AST_SimpleStatement ? stat : null;
|
|
1154
|
-
});
|
|
1155
|
-
return ret;
|
|
1156
|
-
};
|
|
1157
|
-
|
|
1158
|
-
function join_consecutive_vars(statements, compressor) {
|
|
1159
|
-
var prev = null;
|
|
1160
|
-
return statements.reduce(function(a, stat){
|
|
1161
|
-
if (stat instanceof AST_Definitions && prev && prev.TYPE == stat.TYPE) {
|
|
1162
|
-
prev.definitions = prev.definitions.concat(stat.definitions);
|
|
1163
|
-
CHANGED = true;
|
|
1164
|
-
}
|
|
1165
|
-
else if (stat instanceof AST_For
|
|
1166
|
-
&& prev instanceof AST_Var
|
|
1167
|
-
&& (!stat.init || stat.init.TYPE == prev.TYPE)) {
|
|
1168
|
-
CHANGED = true;
|
|
1169
|
-
a.pop();
|
|
1170
|
-
if (stat.init) {
|
|
1171
|
-
stat.init.definitions = prev.definitions.concat(stat.init.definitions);
|
|
1172
|
-
} else {
|
|
1173
|
-
stat.init = prev;
|
|
1174
|
-
}
|
|
1175
|
-
a.push(stat);
|
|
1176
|
-
prev = stat;
|
|
1177
|
-
}
|
|
1178
|
-
else {
|
|
1179
|
-
prev = stat;
|
|
1180
|
-
a.push(stat);
|
|
1181
|
-
}
|
|
1182
|
-
return a;
|
|
1183
|
-
}, []);
|
|
1184
|
-
};
|
|
1185
|
-
|
|
1186
|
-
};
|
|
1187
|
-
|
|
1188
|
-
function extract_functions_from_statement_array(statements) {
|
|
1189
|
-
var funs = [];
|
|
1190
|
-
for (var i = statements.length - 1; i >= 0; --i) {
|
|
1191
|
-
var stat = statements[i];
|
|
1192
|
-
if (stat instanceof AST_Defun) {
|
|
1193
|
-
statements.splice(i, 1);
|
|
1194
|
-
funs.unshift(stat);
|
|
1195
|
-
}
|
|
1196
|
-
}
|
|
1197
|
-
return funs;
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
|
-
function extract_declarations_from_unreachable_code(compressor, stat, target) {
|
|
1201
|
-
if (!(stat instanceof AST_Defun)) {
|
|
1202
|
-
compressor.warn("Dropping unreachable code [{file}:{line},{col}]", stat.start);
|
|
1203
|
-
}
|
|
1204
|
-
stat.walk(new TreeWalker(function(node){
|
|
1205
|
-
if (node instanceof AST_Definitions) {
|
|
1206
|
-
compressor.warn("Declarations in unreachable code! [{file}:{line},{col}]", node.start);
|
|
1207
|
-
node.remove_initializers();
|
|
1208
|
-
target.push(node);
|
|
1209
|
-
return true;
|
|
1210
|
-
}
|
|
1211
|
-
if (node instanceof AST_Defun) {
|
|
1212
|
-
target.push(node);
|
|
1213
|
-
return true;
|
|
1214
|
-
}
|
|
1215
|
-
if (node instanceof AST_Scope) {
|
|
1216
|
-
return true;
|
|
1217
|
-
}
|
|
1218
|
-
}));
|
|
1219
|
-
};
|
|
1220
|
-
|
|
1221
|
-
function is_undefined(node, compressor) {
|
|
1222
|
-
return node.is_undefined
|
|
1223
|
-
|| node instanceof AST_Undefined
|
|
1224
|
-
|| node instanceof AST_UnaryPrefix
|
|
1225
|
-
&& node.operator == "void"
|
|
1226
|
-
&& !node.expression.has_side_effects(compressor);
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
|
-
// may_throw_on_access()
|
|
1230
|
-
// returns true if this node may be null, undefined or contain `AST_Accessor`
|
|
1231
|
-
(function(def) {
|
|
1232
|
-
AST_Node.DEFMETHOD("may_throw_on_access", function(compressor) {
|
|
1233
|
-
var pure_getters = compressor.option("pure_getters");
|
|
1234
|
-
return !pure_getters || this._throw_on_access(pure_getters);
|
|
1235
|
-
});
|
|
1236
|
-
|
|
1237
|
-
function is_strict(pure_getters) {
|
|
1238
|
-
return /strict/.test(pure_getters);
|
|
1239
|
-
}
|
|
1240
|
-
|
|
1241
|
-
def(AST_Node, is_strict);
|
|
1242
|
-
def(AST_Null, return_true);
|
|
1243
|
-
def(AST_Undefined, return_true);
|
|
1244
|
-
def(AST_Constant, return_false);
|
|
1245
|
-
def(AST_Array, return_false);
|
|
1246
|
-
def(AST_Object, function(pure_getters) {
|
|
1247
|
-
if (!is_strict(pure_getters)) return false;
|
|
1248
|
-
for (var i = this.properties.length; --i >=0;)
|
|
1249
|
-
if (this.properties[i].value instanceof AST_Accessor) return true;
|
|
1250
|
-
return false;
|
|
1251
|
-
});
|
|
1252
|
-
def(AST_Function, return_false);
|
|
1253
|
-
def(AST_UnaryPostfix, return_false);
|
|
1254
|
-
def(AST_UnaryPrefix, function() {
|
|
1255
|
-
return this.operator == "void";
|
|
1256
|
-
});
|
|
1257
|
-
def(AST_Binary, function(pure_getters) {
|
|
1258
|
-
switch (this.operator) {
|
|
1259
|
-
case "&&":
|
|
1260
|
-
return this.left._throw_on_access(pure_getters);
|
|
1261
|
-
case "||":
|
|
1262
|
-
return this.left._throw_on_access(pure_getters)
|
|
1263
|
-
&& this.right._throw_on_access(pure_getters);
|
|
1264
|
-
default:
|
|
1265
|
-
return false;
|
|
1266
|
-
}
|
|
1267
|
-
})
|
|
1268
|
-
def(AST_Assign, function(pure_getters) {
|
|
1269
|
-
return this.operator == "="
|
|
1270
|
-
&& this.right._throw_on_access(pure_getters);
|
|
1271
|
-
})
|
|
1272
|
-
def(AST_Conditional, function(pure_getters) {
|
|
1273
|
-
return this.consequent._throw_on_access(pure_getters)
|
|
1274
|
-
|| this.alternative._throw_on_access(pure_getters);
|
|
1275
|
-
})
|
|
1276
|
-
def(AST_Seq, function(pure_getters) {
|
|
1277
|
-
return this.cdr._throw_on_access(pure_getters);
|
|
1278
|
-
});
|
|
1279
|
-
def(AST_SymbolRef, function(pure_getters) {
|
|
1280
|
-
if (this.is_undefined) return true;
|
|
1281
|
-
if (!is_strict(pure_getters)) return false;
|
|
1282
|
-
var fixed = this.fixed_value();
|
|
1283
|
-
return !fixed || fixed._throw_on_access(pure_getters);
|
|
1284
|
-
});
|
|
1285
|
-
})(function(node, func) {
|
|
1286
|
-
node.DEFMETHOD("_throw_on_access", func);
|
|
1287
|
-
});
|
|
1288
|
-
|
|
1289
|
-
/* -----[ boolean/negation helpers ]----- */
|
|
1290
|
-
|
|
1291
|
-
// methods to determine whether an expression has a boolean result type
|
|
1292
|
-
(function (def){
|
|
1293
|
-
var unary_bool = [ "!", "delete" ];
|
|
1294
|
-
var binary_bool = [ "in", "instanceof", "==", "!=", "===", "!==", "<", "<=", ">=", ">" ];
|
|
1295
|
-
def(AST_Node, return_false);
|
|
1296
|
-
def(AST_UnaryPrefix, function(){
|
|
1297
|
-
return member(this.operator, unary_bool);
|
|
1298
|
-
});
|
|
1299
|
-
def(AST_Binary, function(){
|
|
1300
|
-
return member(this.operator, binary_bool) ||
|
|
1301
|
-
( (this.operator == "&&" || this.operator == "||") &&
|
|
1302
|
-
this.left.is_boolean() && this.right.is_boolean() );
|
|
1303
|
-
});
|
|
1304
|
-
def(AST_Conditional, function(){
|
|
1305
|
-
return this.consequent.is_boolean() && this.alternative.is_boolean();
|
|
1306
|
-
});
|
|
1307
|
-
def(AST_Assign, function(){
|
|
1308
|
-
return this.operator == "=" && this.right.is_boolean();
|
|
1309
|
-
});
|
|
1310
|
-
def(AST_Seq, function(){
|
|
1311
|
-
return this.cdr.is_boolean();
|
|
1312
|
-
});
|
|
1313
|
-
def(AST_True, return_true);
|
|
1314
|
-
def(AST_False, return_true);
|
|
1315
|
-
})(function(node, func){
|
|
1316
|
-
node.DEFMETHOD("is_boolean", func);
|
|
1317
|
-
});
|
|
1318
|
-
|
|
1319
|
-
// methods to determine if an expression has a numeric result type
|
|
1320
|
-
(function (def){
|
|
1321
|
-
def(AST_Node, return_false);
|
|
1322
|
-
def(AST_Number, return_true);
|
|
1323
|
-
var unary = makePredicate("+ - ~ ++ --");
|
|
1324
|
-
def(AST_Unary, function(){
|
|
1325
|
-
return unary(this.operator);
|
|
1326
|
-
});
|
|
1327
|
-
var binary = makePredicate("- * / % & | ^ << >> >>>");
|
|
1328
|
-
def(AST_Binary, function(compressor){
|
|
1329
|
-
return binary(this.operator) || this.operator == "+"
|
|
1330
|
-
&& this.left.is_number(compressor)
|
|
1331
|
-
&& this.right.is_number(compressor);
|
|
1332
|
-
});
|
|
1333
|
-
def(AST_Assign, function(compressor){
|
|
1334
|
-
return binary(this.operator.slice(0, -1))
|
|
1335
|
-
|| this.operator == "=" && this.right.is_number(compressor);
|
|
1336
|
-
});
|
|
1337
|
-
def(AST_Seq, function(compressor){
|
|
1338
|
-
return this.cdr.is_number(compressor);
|
|
1339
|
-
});
|
|
1340
|
-
def(AST_Conditional, function(compressor){
|
|
1341
|
-
return this.consequent.is_number(compressor) && this.alternative.is_number(compressor);
|
|
1342
|
-
});
|
|
1343
|
-
})(function(node, func){
|
|
1344
|
-
node.DEFMETHOD("is_number", func);
|
|
1345
|
-
});
|
|
1346
|
-
|
|
1347
|
-
// methods to determine if an expression has a string result type
|
|
1348
|
-
(function (def){
|
|
1349
|
-
def(AST_Node, return_false);
|
|
1350
|
-
def(AST_String, return_true);
|
|
1351
|
-
def(AST_UnaryPrefix, function(){
|
|
1352
|
-
return this.operator == "typeof";
|
|
1353
|
-
});
|
|
1354
|
-
def(AST_Binary, function(compressor){
|
|
1355
|
-
return this.operator == "+" &&
|
|
1356
|
-
(this.left.is_string(compressor) || this.right.is_string(compressor));
|
|
1357
|
-
});
|
|
1358
|
-
def(AST_Assign, function(compressor){
|
|
1359
|
-
return (this.operator == "=" || this.operator == "+=") && this.right.is_string(compressor);
|
|
1360
|
-
});
|
|
1361
|
-
def(AST_Seq, function(compressor){
|
|
1362
|
-
return this.cdr.is_string(compressor);
|
|
1363
|
-
});
|
|
1364
|
-
def(AST_Conditional, function(compressor){
|
|
1365
|
-
return this.consequent.is_string(compressor) && this.alternative.is_string(compressor);
|
|
1366
|
-
});
|
|
1367
|
-
})(function(node, func){
|
|
1368
|
-
node.DEFMETHOD("is_string", func);
|
|
1369
|
-
});
|
|
1370
|
-
|
|
1371
|
-
var unary_side_effects = makePredicate("delete ++ --");
|
|
1372
|
-
|
|
1373
|
-
function is_lhs(node, parent) {
|
|
1374
|
-
if (parent instanceof AST_Unary && unary_side_effects(parent.operator)) return parent.expression;
|
|
1375
|
-
if (parent instanceof AST_Assign && parent.left === node) return node;
|
|
1376
|
-
}
|
|
1377
|
-
|
|
1378
|
-
(function (def){
|
|
1379
|
-
AST_Node.DEFMETHOD("resolve_defines", function(compressor) {
|
|
1380
|
-
if (!compressor.option("global_defs")) return;
|
|
1381
|
-
var def = this._find_defs(compressor, "");
|
|
1382
|
-
if (def) {
|
|
1383
|
-
var node, parent = this, level = 0;
|
|
1384
|
-
do {
|
|
1385
|
-
node = parent;
|
|
1386
|
-
parent = compressor.parent(level++);
|
|
1387
|
-
} while (parent instanceof AST_PropAccess && parent.expression === node);
|
|
1388
|
-
if (is_lhs(node, parent)) {
|
|
1389
|
-
compressor.warn('global_defs ' + this.print_to_string() + ' redefined [{file}:{line},{col}]', this.start);
|
|
1390
|
-
} else {
|
|
1391
|
-
return def;
|
|
1392
|
-
}
|
|
1393
|
-
}
|
|
1394
|
-
});
|
|
1395
|
-
function to_node(value, orig) {
|
|
1396
|
-
if (value instanceof AST_Node) return make_node(value.CTOR, orig, value);
|
|
1397
|
-
if (Array.isArray(value)) return make_node(AST_Array, orig, {
|
|
1398
|
-
elements: value.map(function(value) {
|
|
1399
|
-
return to_node(value, orig);
|
|
1400
|
-
})
|
|
1401
|
-
});
|
|
1402
|
-
if (value && typeof value == "object") {
|
|
1403
|
-
var props = [];
|
|
1404
|
-
for (var key in value) {
|
|
1405
|
-
props.push(make_node(AST_ObjectKeyVal, orig, {
|
|
1406
|
-
key: key,
|
|
1407
|
-
value: to_node(value[key], orig)
|
|
1408
|
-
}));
|
|
1409
|
-
}
|
|
1410
|
-
return make_node(AST_Object, orig, {
|
|
1411
|
-
properties: props
|
|
1412
|
-
});
|
|
1413
|
-
}
|
|
1414
|
-
return make_node_from_constant(value, orig);
|
|
1415
|
-
}
|
|
1416
|
-
def(AST_Node, noop);
|
|
1417
|
-
def(AST_Dot, function(compressor, suffix){
|
|
1418
|
-
return this.expression._find_defs(compressor, "." + this.property + suffix);
|
|
1419
|
-
});
|
|
1420
|
-
def(AST_SymbolRef, function(compressor, suffix){
|
|
1421
|
-
if (!this.global()) return;
|
|
1422
|
-
var name;
|
|
1423
|
-
var defines = compressor.option("global_defs");
|
|
1424
|
-
if (defines && HOP(defines, (name = this.name + suffix))) {
|
|
1425
|
-
var node = to_node(defines[name], this);
|
|
1426
|
-
var top = compressor.find_parent(AST_Toplevel);
|
|
1427
|
-
node.walk(new TreeWalker(function(node) {
|
|
1428
|
-
if (node instanceof AST_SymbolRef) {
|
|
1429
|
-
node.scope = top;
|
|
1430
|
-
node.thedef = top.def_global(node);
|
|
1431
|
-
}
|
|
1432
|
-
}));
|
|
1433
|
-
return node;
|
|
1434
|
-
}
|
|
1435
|
-
});
|
|
1436
|
-
})(function(node, func){
|
|
1437
|
-
node.DEFMETHOD("_find_defs", func);
|
|
1438
|
-
});
|
|
1439
|
-
|
|
1440
|
-
function best_of_expression(ast1, ast2) {
|
|
1441
|
-
return ast1.print_to_string().length >
|
|
1442
|
-
ast2.print_to_string().length
|
|
1443
|
-
? ast2 : ast1;
|
|
1444
|
-
}
|
|
1445
|
-
|
|
1446
|
-
function best_of_statement(ast1, ast2) {
|
|
1447
|
-
return best_of_expression(make_node(AST_SimpleStatement, ast1, {
|
|
1448
|
-
body: ast1
|
|
1449
|
-
}), make_node(AST_SimpleStatement, ast2, {
|
|
1450
|
-
body: ast2
|
|
1451
|
-
})).body;
|
|
1452
|
-
}
|
|
1453
|
-
|
|
1454
|
-
function best_of(compressor, ast1, ast2) {
|
|
1455
|
-
return (first_in_statement(compressor) ? best_of_statement : best_of_expression)(ast1, ast2);
|
|
1456
|
-
}
|
|
1457
|
-
|
|
1458
|
-
// methods to evaluate a constant expression
|
|
1459
|
-
(function (def){
|
|
1460
|
-
// If the node has been successfully reduced to a constant,
|
|
1461
|
-
// then its value is returned; otherwise the element itself
|
|
1462
|
-
// is returned.
|
|
1463
|
-
// They can be distinguished as constant value is never a
|
|
1464
|
-
// descendant of AST_Node.
|
|
1465
|
-
AST_Node.DEFMETHOD("evaluate", function(compressor){
|
|
1466
|
-
if (!compressor.option("evaluate")) return this;
|
|
1467
|
-
try {
|
|
1468
|
-
var val = this._eval(compressor);
|
|
1469
|
-
return !val || val instanceof RegExp || typeof val != "object" ? val : this;
|
|
1470
|
-
} catch(ex) {
|
|
1471
|
-
if (ex !== def) throw ex;
|
|
1472
|
-
return this;
|
|
1473
|
-
}
|
|
1474
|
-
});
|
|
1475
|
-
var unaryPrefix = makePredicate("! ~ - + void");
|
|
1476
|
-
AST_Node.DEFMETHOD("is_constant", function(){
|
|
1477
|
-
// Accomodate when compress option evaluate=false
|
|
1478
|
-
// as well as the common constant expressions !0 and -1
|
|
1479
|
-
if (this instanceof AST_Constant) {
|
|
1480
|
-
return !(this instanceof AST_RegExp);
|
|
1481
|
-
} else {
|
|
1482
|
-
return this instanceof AST_UnaryPrefix
|
|
1483
|
-
&& this.expression instanceof AST_Constant
|
|
1484
|
-
&& unaryPrefix(this.operator);
|
|
1485
|
-
}
|
|
1486
|
-
});
|
|
1487
|
-
// Obtain the constant value of an expression already known to be constant.
|
|
1488
|
-
// Result only valid iff this.is_constant() is true.
|
|
1489
|
-
AST_Node.DEFMETHOD("constant_value", function(compressor){
|
|
1490
|
-
// Accomodate when option evaluate=false.
|
|
1491
|
-
if (this instanceof AST_Constant && !(this instanceof AST_RegExp)) {
|
|
1492
|
-
return this.value;
|
|
1493
|
-
}
|
|
1494
|
-
// Accomodate the common constant expressions !0 and -1 when option evaluate=false.
|
|
1495
|
-
if (this instanceof AST_UnaryPrefix
|
|
1496
|
-
&& this.expression instanceof AST_Constant) switch (this.operator) {
|
|
1497
|
-
case "!":
|
|
1498
|
-
return !this.expression.value;
|
|
1499
|
-
case "~":
|
|
1500
|
-
return ~this.expression.value;
|
|
1501
|
-
case "-":
|
|
1502
|
-
return -this.expression.value;
|
|
1503
|
-
case "+":
|
|
1504
|
-
return +this.expression.value;
|
|
1505
|
-
default:
|
|
1506
|
-
throw new Error(string_template("Cannot evaluate unary expression {value}", {
|
|
1507
|
-
value: this.print_to_string()
|
|
1508
|
-
}));
|
|
1509
|
-
}
|
|
1510
|
-
var result = this.evaluate(compressor);
|
|
1511
|
-
if (result !== this) {
|
|
1512
|
-
return result;
|
|
1513
|
-
}
|
|
1514
|
-
throw new Error(string_template("Cannot evaluate constant [{file}:{line},{col}]", this.start));
|
|
1515
|
-
});
|
|
1516
|
-
def(AST_Statement, function(){
|
|
1517
|
-
throw new Error(string_template("Cannot evaluate a statement [{file}:{line},{col}]", this.start));
|
|
1518
|
-
});
|
|
1519
|
-
def(AST_Lambda, function(){
|
|
1520
|
-
throw def;
|
|
1521
|
-
});
|
|
1522
|
-
function ev(node, compressor) {
|
|
1523
|
-
if (!compressor) throw new Error("Compressor must be passed");
|
|
1524
|
-
|
|
1525
|
-
return node._eval(compressor);
|
|
1526
|
-
};
|
|
1527
|
-
def(AST_Node, function(){
|
|
1528
|
-
throw def; // not constant
|
|
1529
|
-
});
|
|
1530
|
-
def(AST_Constant, function(){
|
|
1531
|
-
return this.getValue();
|
|
1532
|
-
});
|
|
1533
|
-
def(AST_Array, function(compressor){
|
|
1534
|
-
if (compressor.option("unsafe")) {
|
|
1535
|
-
return this.elements.map(function(element) {
|
|
1536
|
-
return ev(element, compressor);
|
|
1537
|
-
});
|
|
1538
|
-
}
|
|
1539
|
-
throw def;
|
|
1540
|
-
});
|
|
1541
|
-
def(AST_Object, function(compressor){
|
|
1542
|
-
if (compressor.option("unsafe")) {
|
|
1543
|
-
var val = {};
|
|
1544
|
-
for (var i = 0, len = this.properties.length; i < len; i++) {
|
|
1545
|
-
var prop = this.properties[i];
|
|
1546
|
-
var key = prop.key;
|
|
1547
|
-
if (key instanceof AST_Symbol) {
|
|
1548
|
-
key = key.name;
|
|
1549
|
-
} else if (key instanceof AST_Node) {
|
|
1550
|
-
key = ev(key, compressor);
|
|
1551
|
-
}
|
|
1552
|
-
if (typeof Object.prototype[key] === 'function') {
|
|
1553
|
-
throw def;
|
|
1554
|
-
}
|
|
1555
|
-
val[key] = ev(prop.value, compressor);
|
|
1556
|
-
}
|
|
1557
|
-
return val;
|
|
1558
|
-
}
|
|
1559
|
-
throw def;
|
|
1560
|
-
});
|
|
1561
|
-
def(AST_UnaryPrefix, function(compressor){
|
|
1562
|
-
var e = this.expression;
|
|
1563
|
-
switch (this.operator) {
|
|
1564
|
-
case "!": return !ev(e, compressor);
|
|
1565
|
-
case "typeof":
|
|
1566
|
-
// Function would be evaluated to an array and so typeof would
|
|
1567
|
-
// incorrectly return 'object'. Hence making is a special case.
|
|
1568
|
-
if (e instanceof AST_Function) return typeof function(){};
|
|
1569
|
-
|
|
1570
|
-
e = ev(e, compressor);
|
|
1571
|
-
|
|
1572
|
-
// typeof <RegExp> returns "object" or "function" on different platforms
|
|
1573
|
-
// so cannot evaluate reliably
|
|
1574
|
-
if (e instanceof RegExp) throw def;
|
|
1575
|
-
|
|
1576
|
-
return typeof e;
|
|
1577
|
-
case "void": return void ev(e, compressor);
|
|
1578
|
-
case "~": return ~ev(e, compressor);
|
|
1579
|
-
case "-": return -ev(e, compressor);
|
|
1580
|
-
case "+": return +ev(e, compressor);
|
|
1581
|
-
}
|
|
1582
|
-
throw def;
|
|
1583
|
-
});
|
|
1584
|
-
def(AST_Binary, function(c){
|
|
1585
|
-
var left = this.left, right = this.right, result;
|
|
1586
|
-
switch (this.operator) {
|
|
1587
|
-
case "&&" : result = ev(left, c) && ev(right, c); break;
|
|
1588
|
-
case "||" : result = ev(left, c) || ev(right, c); break;
|
|
1589
|
-
case "|" : result = ev(left, c) | ev(right, c); break;
|
|
1590
|
-
case "&" : result = ev(left, c) & ev(right, c); break;
|
|
1591
|
-
case "^" : result = ev(left, c) ^ ev(right, c); break;
|
|
1592
|
-
case "+" : result = ev(left, c) + ev(right, c); break;
|
|
1593
|
-
case "*" : result = ev(left, c) * ev(right, c); break;
|
|
1594
|
-
case "/" : result = ev(left, c) / ev(right, c); break;
|
|
1595
|
-
case "%" : result = ev(left, c) % ev(right, c); break;
|
|
1596
|
-
case "-" : result = ev(left, c) - ev(right, c); break;
|
|
1597
|
-
case "<<" : result = ev(left, c) << ev(right, c); break;
|
|
1598
|
-
case ">>" : result = ev(left, c) >> ev(right, c); break;
|
|
1599
|
-
case ">>>" : result = ev(left, c) >>> ev(right, c); break;
|
|
1600
|
-
case "==" : result = ev(left, c) == ev(right, c); break;
|
|
1601
|
-
case "===" : result = ev(left, c) === ev(right, c); break;
|
|
1602
|
-
case "!=" : result = ev(left, c) != ev(right, c); break;
|
|
1603
|
-
case "!==" : result = ev(left, c) !== ev(right, c); break;
|
|
1604
|
-
case "<" : result = ev(left, c) < ev(right, c); break;
|
|
1605
|
-
case "<=" : result = ev(left, c) <= ev(right, c); break;
|
|
1606
|
-
case ">" : result = ev(left, c) > ev(right, c); break;
|
|
1607
|
-
case ">=" : result = ev(left, c) >= ev(right, c); break;
|
|
1608
|
-
default:
|
|
1609
|
-
throw def;
|
|
1610
|
-
}
|
|
1611
|
-
if (isNaN(result) && c.find_parent(AST_With)) {
|
|
1612
|
-
// leave original expression as is
|
|
1613
|
-
throw def;
|
|
1614
|
-
}
|
|
1615
|
-
return result;
|
|
1616
|
-
});
|
|
1617
|
-
def(AST_Conditional, function(compressor){
|
|
1618
|
-
return ev(this.condition, compressor)
|
|
1619
|
-
? ev(this.consequent, compressor)
|
|
1620
|
-
: ev(this.alternative, compressor);
|
|
1621
|
-
});
|
|
1622
|
-
def(AST_SymbolRef, function(compressor){
|
|
1623
|
-
if (!compressor.option("reduce_vars") || this._evaluating) throw def;
|
|
1624
|
-
this._evaluating = true;
|
|
1625
|
-
try {
|
|
1626
|
-
var fixed = this.fixed_value();
|
|
1627
|
-
if (!fixed) throw def;
|
|
1628
|
-
var value = ev(fixed, compressor);
|
|
1629
|
-
if (!HOP(fixed, "_eval")) fixed._eval = function() {
|
|
1630
|
-
return value;
|
|
1631
|
-
};
|
|
1632
|
-
if (value && typeof value == "object" && this.definition().escaped) throw def;
|
|
1633
|
-
return value;
|
|
1634
|
-
} finally {
|
|
1635
|
-
this._evaluating = false;
|
|
1636
|
-
}
|
|
1637
|
-
});
|
|
1638
|
-
def(AST_PropAccess, function(compressor){
|
|
1639
|
-
if (compressor.option("unsafe")) {
|
|
1640
|
-
var key = this.property;
|
|
1641
|
-
if (key instanceof AST_Node) {
|
|
1642
|
-
key = ev(key, compressor);
|
|
1643
|
-
}
|
|
1644
|
-
var val = ev(this.expression, compressor);
|
|
1645
|
-
if (val && HOP(val, key)) {
|
|
1646
|
-
return val[key];
|
|
1647
|
-
}
|
|
1648
|
-
}
|
|
1649
|
-
throw def;
|
|
1650
|
-
});
|
|
1651
|
-
})(function(node, func){
|
|
1652
|
-
node.DEFMETHOD("_eval", func);
|
|
1653
|
-
});
|
|
1654
|
-
|
|
1655
|
-
// method to negate an expression
|
|
1656
|
-
(function(def){
|
|
1657
|
-
function basic_negation(exp) {
|
|
1658
|
-
return make_node(AST_UnaryPrefix, exp, {
|
|
1659
|
-
operator: "!",
|
|
1660
|
-
expression: exp
|
|
1661
|
-
});
|
|
1662
|
-
}
|
|
1663
|
-
function best(orig, alt, first_in_statement) {
|
|
1664
|
-
var negated = basic_negation(orig);
|
|
1665
|
-
if (first_in_statement) {
|
|
1666
|
-
var stat = make_node(AST_SimpleStatement, alt, {
|
|
1667
|
-
body: alt
|
|
1668
|
-
});
|
|
1669
|
-
return best_of_expression(negated, stat) === stat ? alt : negated;
|
|
1670
|
-
}
|
|
1671
|
-
return best_of_expression(negated, alt);
|
|
1672
|
-
}
|
|
1673
|
-
def(AST_Node, function(){
|
|
1674
|
-
return basic_negation(this);
|
|
1675
|
-
});
|
|
1676
|
-
def(AST_Statement, function(){
|
|
1677
|
-
throw new Error("Cannot negate a statement");
|
|
1678
|
-
});
|
|
1679
|
-
def(AST_Function, function(){
|
|
1680
|
-
return basic_negation(this);
|
|
1681
|
-
});
|
|
1682
|
-
def(AST_UnaryPrefix, function(){
|
|
1683
|
-
if (this.operator == "!")
|
|
1684
|
-
return this.expression;
|
|
1685
|
-
return basic_negation(this);
|
|
1686
|
-
});
|
|
1687
|
-
def(AST_Seq, function(compressor){
|
|
1688
|
-
var self = this.clone();
|
|
1689
|
-
self.cdr = self.cdr.negate(compressor);
|
|
1690
|
-
return self;
|
|
1691
|
-
});
|
|
1692
|
-
def(AST_Conditional, function(compressor, first_in_statement){
|
|
1693
|
-
var self = this.clone();
|
|
1694
|
-
self.consequent = self.consequent.negate(compressor);
|
|
1695
|
-
self.alternative = self.alternative.negate(compressor);
|
|
1696
|
-
return best(this, self, first_in_statement);
|
|
1697
|
-
});
|
|
1698
|
-
def(AST_Binary, function(compressor, first_in_statement){
|
|
1699
|
-
var self = this.clone(), op = this.operator;
|
|
1700
|
-
if (compressor.option("unsafe_comps")) {
|
|
1701
|
-
switch (op) {
|
|
1702
|
-
case "<=" : self.operator = ">" ; return self;
|
|
1703
|
-
case "<" : self.operator = ">=" ; return self;
|
|
1704
|
-
case ">=" : self.operator = "<" ; return self;
|
|
1705
|
-
case ">" : self.operator = "<=" ; return self;
|
|
1706
|
-
}
|
|
1707
|
-
}
|
|
1708
|
-
switch (op) {
|
|
1709
|
-
case "==" : self.operator = "!="; return self;
|
|
1710
|
-
case "!=" : self.operator = "=="; return self;
|
|
1711
|
-
case "===": self.operator = "!=="; return self;
|
|
1712
|
-
case "!==": self.operator = "==="; return self;
|
|
1713
|
-
case "&&":
|
|
1714
|
-
self.operator = "||";
|
|
1715
|
-
self.left = self.left.negate(compressor, first_in_statement);
|
|
1716
|
-
self.right = self.right.negate(compressor);
|
|
1717
|
-
return best(this, self, first_in_statement);
|
|
1718
|
-
case "||":
|
|
1719
|
-
self.operator = "&&";
|
|
1720
|
-
self.left = self.left.negate(compressor, first_in_statement);
|
|
1721
|
-
self.right = self.right.negate(compressor);
|
|
1722
|
-
return best(this, self, first_in_statement);
|
|
1723
|
-
}
|
|
1724
|
-
return basic_negation(this);
|
|
1725
|
-
});
|
|
1726
|
-
})(function(node, func){
|
|
1727
|
-
node.DEFMETHOD("negate", function(compressor, first_in_statement){
|
|
1728
|
-
return func.call(this, compressor, first_in_statement);
|
|
1729
|
-
});
|
|
1730
|
-
});
|
|
1731
|
-
|
|
1732
|
-
AST_Call.DEFMETHOD("has_pure_annotation", function(compressor) {
|
|
1733
|
-
if (!compressor.option("side_effects")) return false;
|
|
1734
|
-
if (this.pure !== undefined) return this.pure;
|
|
1735
|
-
var pure = false;
|
|
1736
|
-
var comments, last_comment;
|
|
1737
|
-
if (this.start
|
|
1738
|
-
&& (comments = this.start.comments_before)
|
|
1739
|
-
&& comments.length
|
|
1740
|
-
&& /[@#]__PURE__/.test((last_comment = comments[comments.length - 1]).value)) {
|
|
1741
|
-
pure = last_comment;
|
|
1742
|
-
}
|
|
1743
|
-
return this.pure = pure;
|
|
1744
|
-
});
|
|
1745
|
-
|
|
1746
|
-
// determine if expression has side effects
|
|
1747
|
-
(function(def){
|
|
1748
|
-
def(AST_Node, return_true);
|
|
1749
|
-
|
|
1750
|
-
def(AST_EmptyStatement, return_false);
|
|
1751
|
-
def(AST_Constant, return_false);
|
|
1752
|
-
def(AST_This, return_false);
|
|
1753
|
-
|
|
1754
|
-
def(AST_Call, function(compressor){
|
|
1755
|
-
if (!this.has_pure_annotation(compressor) && compressor.pure_funcs(this)) return true;
|
|
1756
|
-
for (var i = this.args.length; --i >= 0;) {
|
|
1757
|
-
if (this.args[i].has_side_effects(compressor))
|
|
1758
|
-
return true;
|
|
1759
|
-
}
|
|
1760
|
-
return false;
|
|
1761
|
-
});
|
|
1762
|
-
|
|
1763
|
-
function any(list, compressor) {
|
|
1764
|
-
for (var i = list.length; --i >= 0;)
|
|
1765
|
-
if (list[i].has_side_effects(compressor))
|
|
1766
|
-
return true;
|
|
1767
|
-
return false;
|
|
1768
|
-
}
|
|
1769
|
-
|
|
1770
|
-
def(AST_Block, function(compressor){
|
|
1771
|
-
return any(this.body, compressor);
|
|
1772
|
-
});
|
|
1773
|
-
def(AST_Switch, function(compressor){
|
|
1774
|
-
return this.expression.has_side_effects(compressor)
|
|
1775
|
-
|| any(this.body, compressor);
|
|
1776
|
-
});
|
|
1777
|
-
def(AST_Case, function(compressor){
|
|
1778
|
-
return this.expression.has_side_effects(compressor)
|
|
1779
|
-
|| any(this.body, compressor);
|
|
1780
|
-
});
|
|
1781
|
-
def(AST_Try, function(compressor){
|
|
1782
|
-
return any(this.body, compressor)
|
|
1783
|
-
|| this.bcatch && this.bcatch.has_side_effects(compressor)
|
|
1784
|
-
|| this.bfinally && this.bfinally.has_side_effects(compressor);
|
|
1785
|
-
});
|
|
1786
|
-
def(AST_If, function(compressor){
|
|
1787
|
-
return this.condition.has_side_effects(compressor)
|
|
1788
|
-
|| this.body && this.body.has_side_effects(compressor)
|
|
1789
|
-
|| this.alternative && this.alternative.has_side_effects(compressor);
|
|
1790
|
-
});
|
|
1791
|
-
def(AST_LabeledStatement, function(compressor){
|
|
1792
|
-
return this.body.has_side_effects(compressor);
|
|
1793
|
-
});
|
|
1794
|
-
def(AST_SimpleStatement, function(compressor){
|
|
1795
|
-
return this.body.has_side_effects(compressor);
|
|
1796
|
-
});
|
|
1797
|
-
def(AST_Defun, return_true);
|
|
1798
|
-
def(AST_Function, return_false);
|
|
1799
|
-
def(AST_Binary, function(compressor){
|
|
1800
|
-
return this.left.has_side_effects(compressor)
|
|
1801
|
-
|| this.right.has_side_effects(compressor);
|
|
1802
|
-
});
|
|
1803
|
-
def(AST_Assign, return_true);
|
|
1804
|
-
def(AST_Conditional, function(compressor){
|
|
1805
|
-
return this.condition.has_side_effects(compressor)
|
|
1806
|
-
|| this.consequent.has_side_effects(compressor)
|
|
1807
|
-
|| this.alternative.has_side_effects(compressor);
|
|
1808
|
-
});
|
|
1809
|
-
def(AST_Unary, function(compressor){
|
|
1810
|
-
return unary_side_effects(this.operator)
|
|
1811
|
-
|| this.expression.has_side_effects(compressor);
|
|
1812
|
-
});
|
|
1813
|
-
def(AST_SymbolRef, function(compressor){
|
|
1814
|
-
return this.undeclared();
|
|
1815
|
-
});
|
|
1816
|
-
def(AST_Object, function(compressor){
|
|
1817
|
-
return any(this.properties, compressor);
|
|
1818
|
-
});
|
|
1819
|
-
def(AST_ObjectProperty, function(compressor){
|
|
1820
|
-
return this.value.has_side_effects(compressor);
|
|
1821
|
-
});
|
|
1822
|
-
def(AST_Array, function(compressor){
|
|
1823
|
-
return any(this.elements, compressor);
|
|
1824
|
-
});
|
|
1825
|
-
def(AST_Dot, function(compressor){
|
|
1826
|
-
return this.expression.may_throw_on_access(compressor)
|
|
1827
|
-
|| this.expression.has_side_effects(compressor);
|
|
1828
|
-
});
|
|
1829
|
-
def(AST_Sub, function(compressor){
|
|
1830
|
-
return this.expression.may_throw_on_access(compressor)
|
|
1831
|
-
|| this.expression.has_side_effects(compressor)
|
|
1832
|
-
|| this.property.has_side_effects(compressor);
|
|
1833
|
-
});
|
|
1834
|
-
def(AST_Seq, function(compressor){
|
|
1835
|
-
return this.car.has_side_effects(compressor)
|
|
1836
|
-
|| this.cdr.has_side_effects(compressor);
|
|
1837
|
-
});
|
|
1838
|
-
})(function(node, func){
|
|
1839
|
-
node.DEFMETHOD("has_side_effects", func);
|
|
1840
|
-
});
|
|
1841
|
-
|
|
1842
|
-
// tell me if a statement aborts
|
|
1843
|
-
function aborts(thing) {
|
|
1844
|
-
return thing && thing.aborts();
|
|
1845
|
-
};
|
|
1846
|
-
(function(def){
|
|
1847
|
-
def(AST_Statement, return_null);
|
|
1848
|
-
def(AST_Jump, return_this);
|
|
1849
|
-
function block_aborts(){
|
|
1850
|
-
var n = this.body.length;
|
|
1851
|
-
return n > 0 && aborts(this.body[n - 1]);
|
|
1852
|
-
};
|
|
1853
|
-
def(AST_BlockStatement, block_aborts);
|
|
1854
|
-
def(AST_SwitchBranch, block_aborts);
|
|
1855
|
-
def(AST_If, function(){
|
|
1856
|
-
return this.alternative && aborts(this.body) && aborts(this.alternative) && this;
|
|
1857
|
-
});
|
|
1858
|
-
})(function(node, func){
|
|
1859
|
-
node.DEFMETHOD("aborts", func);
|
|
1860
|
-
});
|
|
1861
|
-
|
|
1862
|
-
/* -----[ optimizers ]----- */
|
|
1863
|
-
|
|
1864
|
-
OPT(AST_Directive, function(self, compressor){
|
|
1865
|
-
if (compressor.has_directive(self.value) !== self) {
|
|
1866
|
-
return make_node(AST_EmptyStatement, self);
|
|
1867
|
-
}
|
|
1868
|
-
return self;
|
|
1869
|
-
});
|
|
1870
|
-
|
|
1871
|
-
OPT(AST_Debugger, function(self, compressor){
|
|
1872
|
-
if (compressor.option("drop_debugger"))
|
|
1873
|
-
return make_node(AST_EmptyStatement, self);
|
|
1874
|
-
return self;
|
|
1875
|
-
});
|
|
1876
|
-
|
|
1877
|
-
OPT(AST_LabeledStatement, function(self, compressor){
|
|
1878
|
-
if (self.body instanceof AST_Break
|
|
1879
|
-
&& compressor.loopcontrol_target(self.body) === self.body) {
|
|
1880
|
-
return make_node(AST_EmptyStatement, self);
|
|
1881
|
-
}
|
|
1882
|
-
return self.label.references.length == 0 ? self.body : self;
|
|
1883
|
-
});
|
|
1884
|
-
|
|
1885
|
-
OPT(AST_Block, function(self, compressor){
|
|
1886
|
-
self.body = tighten_body(self.body, compressor);
|
|
1887
|
-
return self;
|
|
1888
|
-
});
|
|
1889
|
-
|
|
1890
|
-
OPT(AST_BlockStatement, function(self, compressor){
|
|
1891
|
-
self.body = tighten_body(self.body, compressor);
|
|
1892
|
-
switch (self.body.length) {
|
|
1893
|
-
case 1: return self.body[0];
|
|
1894
|
-
case 0: return make_node(AST_EmptyStatement, self);
|
|
1895
|
-
}
|
|
1896
|
-
return self;
|
|
1897
|
-
});
|
|
1898
|
-
|
|
1899
|
-
AST_Scope.DEFMETHOD("drop_unused", function(compressor){
|
|
1900
|
-
var self = this;
|
|
1901
|
-
if (compressor.has_directive("use asm")) return self;
|
|
1902
|
-
var toplevel = compressor.option("toplevel");
|
|
1903
|
-
if (compressor.option("unused")
|
|
1904
|
-
&& (!(self instanceof AST_Toplevel) || toplevel)
|
|
1905
|
-
&& !self.uses_eval
|
|
1906
|
-
&& !self.uses_with) {
|
|
1907
|
-
var assign_as_unused = !/keep_assign/.test(compressor.option("unused"));
|
|
1908
|
-
var drop_funcs = /funcs/.test(toplevel);
|
|
1909
|
-
var drop_vars = /vars/.test(toplevel);
|
|
1910
|
-
if (!(self instanceof AST_Toplevel) || toplevel == true) {
|
|
1911
|
-
drop_funcs = drop_vars = true;
|
|
1912
|
-
}
|
|
1913
|
-
var in_use = [];
|
|
1914
|
-
var in_use_ids = Object.create(null); // avoid expensive linear scans of in_use
|
|
1915
|
-
if (self instanceof AST_Toplevel && compressor.top_retain) {
|
|
1916
|
-
self.variables.each(function(def) {
|
|
1917
|
-
if (compressor.top_retain(def) && !(def.id in in_use_ids)) {
|
|
1918
|
-
in_use_ids[def.id] = true;
|
|
1919
|
-
in_use.push(def);
|
|
1920
|
-
}
|
|
1921
|
-
});
|
|
1922
|
-
}
|
|
1923
|
-
var initializations = new Dictionary();
|
|
1924
|
-
// pass 1: find out which symbols are directly used in
|
|
1925
|
-
// this scope (not in nested scopes).
|
|
1926
|
-
var scope = this;
|
|
1927
|
-
var tw = new TreeWalker(function(node, descend){
|
|
1928
|
-
if (node !== self) {
|
|
1929
|
-
if (node instanceof AST_Defun) {
|
|
1930
|
-
if (!drop_funcs && scope === self) {
|
|
1931
|
-
var node_def = node.name.definition();
|
|
1932
|
-
if (!(node_def.id in in_use_ids)) {
|
|
1933
|
-
in_use_ids[node_def.id] = true;
|
|
1934
|
-
in_use.push(node_def);
|
|
1935
|
-
}
|
|
1936
|
-
}
|
|
1937
|
-
initializations.add(node.name.name, node);
|
|
1938
|
-
return true; // don't go in nested scopes
|
|
1939
|
-
}
|
|
1940
|
-
if (node instanceof AST_Definitions && scope === self) {
|
|
1941
|
-
node.definitions.forEach(function(def){
|
|
1942
|
-
if (!drop_vars) {
|
|
1943
|
-
var node_def = def.name.definition();
|
|
1944
|
-
if (!(node_def.id in in_use_ids)) {
|
|
1945
|
-
in_use_ids[node_def.id] = true;
|
|
1946
|
-
in_use.push(node_def);
|
|
1947
|
-
}
|
|
1948
|
-
}
|
|
1949
|
-
if (def.value) {
|
|
1950
|
-
initializations.add(def.name.name, def.value);
|
|
1951
|
-
if (def.value.has_side_effects(compressor)) {
|
|
1952
|
-
def.value.walk(tw);
|
|
1953
|
-
}
|
|
1954
|
-
}
|
|
1955
|
-
});
|
|
1956
|
-
return true;
|
|
1957
|
-
}
|
|
1958
|
-
if (assign_as_unused
|
|
1959
|
-
&& node instanceof AST_Assign
|
|
1960
|
-
&& node.operator == "="
|
|
1961
|
-
&& node.left instanceof AST_SymbolRef
|
|
1962
|
-
&& !is_reference_const(node.left)
|
|
1963
|
-
&& scope === self) {
|
|
1964
|
-
node.right.walk(tw);
|
|
1965
|
-
return true;
|
|
1966
|
-
}
|
|
1967
|
-
if (node instanceof AST_SymbolRef) {
|
|
1968
|
-
var node_def = node.definition();
|
|
1969
|
-
if (!(node_def.id in in_use_ids)) {
|
|
1970
|
-
in_use_ids[node_def.id] = true;
|
|
1971
|
-
in_use.push(node_def);
|
|
1972
|
-
}
|
|
1973
|
-
return true;
|
|
1974
|
-
}
|
|
1975
|
-
if (node instanceof AST_Scope) {
|
|
1976
|
-
var save_scope = scope;
|
|
1977
|
-
scope = node;
|
|
1978
|
-
descend();
|
|
1979
|
-
scope = save_scope;
|
|
1980
|
-
return true;
|
|
1981
|
-
}
|
|
1982
|
-
}
|
|
1983
|
-
});
|
|
1984
|
-
self.walk(tw);
|
|
1985
|
-
// pass 2: for every used symbol we need to walk its
|
|
1986
|
-
// initialization code to figure out if it uses other
|
|
1987
|
-
// symbols (that may not be in_use).
|
|
1988
|
-
for (var i = 0; i < in_use.length; ++i) {
|
|
1989
|
-
in_use[i].orig.forEach(function(decl){
|
|
1990
|
-
// undeclared globals will be instanceof AST_SymbolRef
|
|
1991
|
-
var init = initializations.get(decl.name);
|
|
1992
|
-
if (init) init.forEach(function(init){
|
|
1993
|
-
var tw = new TreeWalker(function(node){
|
|
1994
|
-
if (node instanceof AST_SymbolRef) {
|
|
1995
|
-
var node_def = node.definition();
|
|
1996
|
-
if (!(node_def.id in in_use_ids)) {
|
|
1997
|
-
in_use_ids[node_def.id] = true;
|
|
1998
|
-
in_use.push(node_def);
|
|
1999
|
-
}
|
|
2000
|
-
}
|
|
2001
|
-
});
|
|
2002
|
-
init.walk(tw);
|
|
2003
|
-
});
|
|
2004
|
-
});
|
|
2005
|
-
}
|
|
2006
|
-
// pass 3: we should drop declarations not in_use
|
|
2007
|
-
var tt = new TreeTransformer(
|
|
2008
|
-
function before(node, descend, in_list) {
|
|
2009
|
-
if (node instanceof AST_Function
|
|
2010
|
-
&& node.name
|
|
2011
|
-
&& !compressor.option("keep_fnames")) {
|
|
2012
|
-
var def = node.name.definition();
|
|
2013
|
-
// any declarations with same name will overshadow
|
|
2014
|
-
// name of this anonymous function and can therefore
|
|
2015
|
-
// never be used anywhere
|
|
2016
|
-
if (!(def.id in in_use_ids) || def.orig.length > 1)
|
|
2017
|
-
node.name = null;
|
|
2018
|
-
}
|
|
2019
|
-
if (node instanceof AST_Lambda && !(node instanceof AST_Accessor)) {
|
|
2020
|
-
var trim = !compressor.option("keep_fargs");
|
|
2021
|
-
for (var a = node.argnames, i = a.length; --i >= 0;) {
|
|
2022
|
-
var sym = a[i];
|
|
2023
|
-
if (!(sym.definition().id in in_use_ids)) {
|
|
2024
|
-
sym.__unused = true;
|
|
2025
|
-
if (trim) {
|
|
2026
|
-
a.pop();
|
|
2027
|
-
compressor[sym.unreferenced() ? "warn" : "info"]("Dropping unused function argument {name} [{file}:{line},{col}]", {
|
|
2028
|
-
name : sym.name,
|
|
2029
|
-
file : sym.start.file,
|
|
2030
|
-
line : sym.start.line,
|
|
2031
|
-
col : sym.start.col
|
|
2032
|
-
});
|
|
2033
|
-
}
|
|
2034
|
-
}
|
|
2035
|
-
else {
|
|
2036
|
-
trim = false;
|
|
2037
|
-
}
|
|
2038
|
-
}
|
|
2039
|
-
}
|
|
2040
|
-
if (drop_funcs && node instanceof AST_Defun && node !== self) {
|
|
2041
|
-
if (!(node.name.definition().id in in_use_ids)) {
|
|
2042
|
-
compressor[node.name.unreferenced() ? "warn" : "info"]("Dropping unused function {name} [{file}:{line},{col}]", {
|
|
2043
|
-
name : node.name.name,
|
|
2044
|
-
file : node.name.start.file,
|
|
2045
|
-
line : node.name.start.line,
|
|
2046
|
-
col : node.name.start.col
|
|
2047
|
-
});
|
|
2048
|
-
return make_node(AST_EmptyStatement, node);
|
|
2049
|
-
}
|
|
2050
|
-
return node;
|
|
2051
|
-
}
|
|
2052
|
-
if (drop_vars && node instanceof AST_Definitions && !(tt.parent() instanceof AST_ForIn && tt.parent().init === node)) {
|
|
2053
|
-
var def = node.definitions.filter(function(def){
|
|
2054
|
-
if (def.value) def.value = def.value.transform(tt);
|
|
2055
|
-
var sym = def.name.definition();
|
|
2056
|
-
if (sym.id in in_use_ids) return true;
|
|
2057
|
-
if (sym.orig[0] instanceof AST_SymbolCatch) {
|
|
2058
|
-
def.value = def.value && def.value.drop_side_effect_free(compressor);
|
|
2059
|
-
return true;
|
|
2060
|
-
}
|
|
2061
|
-
var w = {
|
|
2062
|
-
name : def.name.name,
|
|
2063
|
-
file : def.name.start.file,
|
|
2064
|
-
line : def.name.start.line,
|
|
2065
|
-
col : def.name.start.col
|
|
2066
|
-
};
|
|
2067
|
-
if (def.value && (def._unused_side_effects = def.value.drop_side_effect_free(compressor))) {
|
|
2068
|
-
compressor.warn("Side effects in initialization of unused variable {name} [{file}:{line},{col}]", w);
|
|
2069
|
-
return true;
|
|
2070
|
-
}
|
|
2071
|
-
compressor[def.name.unreferenced() ? "warn" : "info"]("Dropping unused variable {name} [{file}:{line},{col}]", w);
|
|
2072
|
-
return false;
|
|
2073
|
-
});
|
|
2074
|
-
// place uninitialized names at the start
|
|
2075
|
-
def = mergeSort(def, function(a, b){
|
|
2076
|
-
if (!a.value && b.value) return -1;
|
|
2077
|
-
if (!b.value && a.value) return 1;
|
|
2078
|
-
return 0;
|
|
2079
|
-
});
|
|
2080
|
-
// for unused names whose initialization has
|
|
2081
|
-
// side effects, we can cascade the init. code
|
|
2082
|
-
// into the next one, or next statement.
|
|
2083
|
-
var side_effects = [];
|
|
2084
|
-
for (var i = 0; i < def.length;) {
|
|
2085
|
-
var x = def[i];
|
|
2086
|
-
if (x._unused_side_effects) {
|
|
2087
|
-
side_effects.push(x._unused_side_effects);
|
|
2088
|
-
def.splice(i, 1);
|
|
2089
|
-
} else {
|
|
2090
|
-
if (side_effects.length > 0) {
|
|
2091
|
-
side_effects.push(x.value);
|
|
2092
|
-
x.value = AST_Seq.from_array(side_effects);
|
|
2093
|
-
side_effects = [];
|
|
2094
|
-
}
|
|
2095
|
-
++i;
|
|
2096
|
-
}
|
|
2097
|
-
}
|
|
2098
|
-
if (side_effects.length > 0) {
|
|
2099
|
-
side_effects = make_node(AST_BlockStatement, node, {
|
|
2100
|
-
body: [ make_node(AST_SimpleStatement, node, {
|
|
2101
|
-
body: AST_Seq.from_array(side_effects)
|
|
2102
|
-
}) ]
|
|
2103
|
-
});
|
|
2104
|
-
} else {
|
|
2105
|
-
side_effects = null;
|
|
2106
|
-
}
|
|
2107
|
-
if (def.length == 0 && !side_effects) {
|
|
2108
|
-
return make_node(AST_EmptyStatement, node);
|
|
2109
|
-
}
|
|
2110
|
-
if (def.length == 0) {
|
|
2111
|
-
return in_list ? MAP.splice(side_effects.body) : side_effects;
|
|
2112
|
-
}
|
|
2113
|
-
node.definitions = def;
|
|
2114
|
-
if (side_effects) {
|
|
2115
|
-
side_effects.body.unshift(node);
|
|
2116
|
-
return in_list ? MAP.splice(side_effects.body) : side_effects;
|
|
2117
|
-
}
|
|
2118
|
-
return node;
|
|
2119
|
-
}
|
|
2120
|
-
if (drop_vars && assign_as_unused
|
|
2121
|
-
&& node instanceof AST_Assign
|
|
2122
|
-
&& node.operator == "="
|
|
2123
|
-
&& node.left instanceof AST_SymbolRef) {
|
|
2124
|
-
var def = node.left.definition();
|
|
2125
|
-
if (!(def.id in in_use_ids)
|
|
2126
|
-
&& self.variables.get(def.name) === def) {
|
|
2127
|
-
return maintain_this_binding(tt.parent(), node, node.right.transform(tt));
|
|
2128
|
-
}
|
|
2129
|
-
}
|
|
2130
|
-
// certain combination of unused name + side effect leads to:
|
|
2131
|
-
// https://github.com/mishoo/UglifyJS2/issues/44
|
|
2132
|
-
// https://github.com/mishoo/UglifyJS2/issues/1830
|
|
2133
|
-
// that's an invalid AST.
|
|
2134
|
-
// We fix it at this stage by moving the `var` outside the `for`.
|
|
2135
|
-
if (node instanceof AST_For) {
|
|
2136
|
-
descend(node, this);
|
|
2137
|
-
if (node.init instanceof AST_BlockStatement) {
|
|
2138
|
-
var block = node.init;
|
|
2139
|
-
node.init = block.body.pop();
|
|
2140
|
-
block.body.push(node);
|
|
2141
|
-
return in_list ? MAP.splice(block.body) : block;
|
|
2142
|
-
} else if (is_empty(node.init)) {
|
|
2143
|
-
node.init = null;
|
|
2144
|
-
}
|
|
2145
|
-
return node;
|
|
2146
|
-
}
|
|
2147
|
-
if (node instanceof AST_LabeledStatement && node.body instanceof AST_For) {
|
|
2148
|
-
descend(node, this);
|
|
2149
|
-
if (node.body instanceof AST_BlockStatement) {
|
|
2150
|
-
var block = node.body;
|
|
2151
|
-
node.body = block.body.pop();
|
|
2152
|
-
block.body.push(node);
|
|
2153
|
-
return in_list ? MAP.splice(block.body) : block;
|
|
2154
|
-
}
|
|
2155
|
-
return node;
|
|
2156
|
-
}
|
|
2157
|
-
if (node instanceof AST_Scope && node !== self)
|
|
2158
|
-
return node;
|
|
2159
|
-
}
|
|
2160
|
-
);
|
|
2161
|
-
self.transform(tt);
|
|
2162
|
-
}
|
|
2163
|
-
});
|
|
2164
|
-
|
|
2165
|
-
AST_Scope.DEFMETHOD("hoist_declarations", function(compressor){
|
|
2166
|
-
var self = this;
|
|
2167
|
-
if (compressor.has_directive("use asm")) return self;
|
|
2168
|
-
var hoist_funs = compressor.option("hoist_funs");
|
|
2169
|
-
var hoist_vars = compressor.option("hoist_vars");
|
|
2170
|
-
if (hoist_funs || hoist_vars) {
|
|
2171
|
-
var dirs = [];
|
|
2172
|
-
var hoisted = [];
|
|
2173
|
-
var vars = new Dictionary(), vars_found = 0, var_decl = 0;
|
|
2174
|
-
// let's count var_decl first, we seem to waste a lot of
|
|
2175
|
-
// space if we hoist `var` when there's only one.
|
|
2176
|
-
self.walk(new TreeWalker(function(node){
|
|
2177
|
-
if (node instanceof AST_Scope && node !== self)
|
|
2178
|
-
return true;
|
|
2179
|
-
if (node instanceof AST_Var) {
|
|
2180
|
-
++var_decl;
|
|
2181
|
-
return true;
|
|
2182
|
-
}
|
|
2183
|
-
}));
|
|
2184
|
-
hoist_vars = hoist_vars && var_decl > 1;
|
|
2185
|
-
var tt = new TreeTransformer(
|
|
2186
|
-
function before(node) {
|
|
2187
|
-
if (node !== self) {
|
|
2188
|
-
if (node instanceof AST_Directive) {
|
|
2189
|
-
dirs.push(node);
|
|
2190
|
-
return make_node(AST_EmptyStatement, node);
|
|
2191
|
-
}
|
|
2192
|
-
if (node instanceof AST_Defun && hoist_funs) {
|
|
2193
|
-
hoisted.push(node);
|
|
2194
|
-
return make_node(AST_EmptyStatement, node);
|
|
2195
|
-
}
|
|
2196
|
-
if (node instanceof AST_Var && hoist_vars) {
|
|
2197
|
-
node.definitions.forEach(function(def){
|
|
2198
|
-
vars.set(def.name.name, def);
|
|
2199
|
-
++vars_found;
|
|
2200
|
-
});
|
|
2201
|
-
var seq = node.to_assignments(compressor);
|
|
2202
|
-
var p = tt.parent();
|
|
2203
|
-
if (p instanceof AST_ForIn && p.init === node) {
|
|
2204
|
-
if (seq == null) {
|
|
2205
|
-
var def = node.definitions[0].name;
|
|
2206
|
-
return make_node(AST_SymbolRef, def, def);
|
|
2207
|
-
}
|
|
2208
|
-
return seq;
|
|
2209
|
-
}
|
|
2210
|
-
if (p instanceof AST_For && p.init === node) {
|
|
2211
|
-
return seq;
|
|
2212
|
-
}
|
|
2213
|
-
if (!seq) return make_node(AST_EmptyStatement, node);
|
|
2214
|
-
return make_node(AST_SimpleStatement, node, {
|
|
2215
|
-
body: seq
|
|
2216
|
-
});
|
|
2217
|
-
}
|
|
2218
|
-
if (node instanceof AST_Scope)
|
|
2219
|
-
return node; // to avoid descending in nested scopes
|
|
2220
|
-
}
|
|
2221
|
-
}
|
|
2222
|
-
);
|
|
2223
|
-
self = self.transform(tt);
|
|
2224
|
-
if (vars_found > 0) {
|
|
2225
|
-
// collect only vars which don't show up in self's arguments list
|
|
2226
|
-
var defs = [];
|
|
2227
|
-
vars.each(function(def, name){
|
|
2228
|
-
if (self instanceof AST_Lambda
|
|
2229
|
-
&& find_if(function(x){ return x.name == def.name.name },
|
|
2230
|
-
self.argnames)) {
|
|
2231
|
-
vars.del(name);
|
|
2232
|
-
} else {
|
|
2233
|
-
def = def.clone();
|
|
2234
|
-
def.value = null;
|
|
2235
|
-
defs.push(def);
|
|
2236
|
-
vars.set(name, def);
|
|
2237
|
-
}
|
|
2238
|
-
});
|
|
2239
|
-
if (defs.length > 0) {
|
|
2240
|
-
// try to merge in assignments
|
|
2241
|
-
for (var i = 0; i < self.body.length;) {
|
|
2242
|
-
if (self.body[i] instanceof AST_SimpleStatement) {
|
|
2243
|
-
var expr = self.body[i].body, sym, assign;
|
|
2244
|
-
if (expr instanceof AST_Assign
|
|
2245
|
-
&& expr.operator == "="
|
|
2246
|
-
&& (sym = expr.left) instanceof AST_Symbol
|
|
2247
|
-
&& vars.has(sym.name))
|
|
2248
|
-
{
|
|
2249
|
-
var def = vars.get(sym.name);
|
|
2250
|
-
if (def.value) break;
|
|
2251
|
-
def.value = expr.right;
|
|
2252
|
-
remove(defs, def);
|
|
2253
|
-
defs.push(def);
|
|
2254
|
-
self.body.splice(i, 1);
|
|
2255
|
-
continue;
|
|
2256
|
-
}
|
|
2257
|
-
if (expr instanceof AST_Seq
|
|
2258
|
-
&& (assign = expr.car) instanceof AST_Assign
|
|
2259
|
-
&& assign.operator == "="
|
|
2260
|
-
&& (sym = assign.left) instanceof AST_Symbol
|
|
2261
|
-
&& vars.has(sym.name))
|
|
2262
|
-
{
|
|
2263
|
-
var def = vars.get(sym.name);
|
|
2264
|
-
if (def.value) break;
|
|
2265
|
-
def.value = assign.right;
|
|
2266
|
-
remove(defs, def);
|
|
2267
|
-
defs.push(def);
|
|
2268
|
-
self.body[i].body = expr.cdr;
|
|
2269
|
-
continue;
|
|
2270
|
-
}
|
|
2271
|
-
}
|
|
2272
|
-
if (self.body[i] instanceof AST_EmptyStatement) {
|
|
2273
|
-
self.body.splice(i, 1);
|
|
2274
|
-
continue;
|
|
2275
|
-
}
|
|
2276
|
-
if (self.body[i] instanceof AST_BlockStatement) {
|
|
2277
|
-
var tmp = [ i, 1 ].concat(self.body[i].body);
|
|
2278
|
-
self.body.splice.apply(self.body, tmp);
|
|
2279
|
-
continue;
|
|
2280
|
-
}
|
|
2281
|
-
break;
|
|
2282
|
-
}
|
|
2283
|
-
defs = make_node(AST_Var, self, {
|
|
2284
|
-
definitions: defs
|
|
2285
|
-
});
|
|
2286
|
-
hoisted.push(defs);
|
|
2287
|
-
};
|
|
2288
|
-
}
|
|
2289
|
-
self.body = dirs.concat(hoisted, self.body);
|
|
2290
|
-
}
|
|
2291
|
-
return self;
|
|
2292
|
-
});
|
|
2293
|
-
|
|
2294
|
-
// drop_side_effect_free()
|
|
2295
|
-
// remove side-effect-free parts which only affects return value
|
|
2296
|
-
(function(def){
|
|
2297
|
-
// Drop side-effect-free elements from an array of expressions.
|
|
2298
|
-
// Returns an array of expressions with side-effects or null
|
|
2299
|
-
// if all elements were dropped. Note: original array may be
|
|
2300
|
-
// returned if nothing changed.
|
|
2301
|
-
function trim(nodes, compressor, first_in_statement) {
|
|
2302
|
-
var ret = [], changed = false;
|
|
2303
|
-
for (var i = 0, len = nodes.length; i < len; i++) {
|
|
2304
|
-
var node = nodes[i].drop_side_effect_free(compressor, first_in_statement);
|
|
2305
|
-
changed |= node !== nodes[i];
|
|
2306
|
-
if (node) {
|
|
2307
|
-
ret.push(node);
|
|
2308
|
-
first_in_statement = false;
|
|
2309
|
-
}
|
|
2310
|
-
}
|
|
2311
|
-
return changed ? ret.length ? ret : null : nodes;
|
|
2312
|
-
}
|
|
2313
|
-
|
|
2314
|
-
def(AST_Node, return_this);
|
|
2315
|
-
def(AST_Constant, return_null);
|
|
2316
|
-
def(AST_This, return_null);
|
|
2317
|
-
def(AST_Call, function(compressor, first_in_statement){
|
|
2318
|
-
if (!this.has_pure_annotation(compressor) && compressor.pure_funcs(this)) {
|
|
2319
|
-
if (this.expression instanceof AST_Function
|
|
2320
|
-
&& (!this.expression.name || !this.expression.name.definition().references.length)) {
|
|
2321
|
-
var node = this.clone();
|
|
2322
|
-
node.expression = node.expression.process_expression(false, compressor);
|
|
2323
|
-
return node;
|
|
2324
|
-
}
|
|
2325
|
-
return this;
|
|
2326
|
-
}
|
|
2327
|
-
if (this.pure) {
|
|
2328
|
-
compressor.warn("Dropping __PURE__ call [{file}:{line},{col}]", this.start);
|
|
2329
|
-
this.pure.value = this.pure.value.replace(/[@#]__PURE__/g, ' ');
|
|
2330
|
-
}
|
|
2331
|
-
var args = trim(this.args, compressor, first_in_statement);
|
|
2332
|
-
return args && AST_Seq.from_array(args);
|
|
2333
|
-
});
|
|
2334
|
-
def(AST_Accessor, return_null);
|
|
2335
|
-
def(AST_Function, return_null);
|
|
2336
|
-
def(AST_Binary, function(compressor, first_in_statement){
|
|
2337
|
-
var right = this.right.drop_side_effect_free(compressor);
|
|
2338
|
-
if (!right) return this.left.drop_side_effect_free(compressor, first_in_statement);
|
|
2339
|
-
switch (this.operator) {
|
|
2340
|
-
case "&&":
|
|
2341
|
-
case "||":
|
|
2342
|
-
if (right === this.right) return this;
|
|
2343
|
-
var node = this.clone();
|
|
2344
|
-
node.right = right;
|
|
2345
|
-
return node;
|
|
2346
|
-
default:
|
|
2347
|
-
var left = this.left.drop_side_effect_free(compressor, first_in_statement);
|
|
2348
|
-
if (!left) return this.right.drop_side_effect_free(compressor, first_in_statement);
|
|
2349
|
-
return make_node(AST_Seq, this, {
|
|
2350
|
-
car: left,
|
|
2351
|
-
cdr: right
|
|
2352
|
-
});
|
|
2353
|
-
}
|
|
2354
|
-
});
|
|
2355
|
-
def(AST_Assign, return_this);
|
|
2356
|
-
def(AST_Conditional, function(compressor){
|
|
2357
|
-
var consequent = this.consequent.drop_side_effect_free(compressor);
|
|
2358
|
-
var alternative = this.alternative.drop_side_effect_free(compressor);
|
|
2359
|
-
if (consequent === this.consequent && alternative === this.alternative) return this;
|
|
2360
|
-
if (!consequent) return alternative ? make_node(AST_Binary, this, {
|
|
2361
|
-
operator: "||",
|
|
2362
|
-
left: this.condition,
|
|
2363
|
-
right: alternative
|
|
2364
|
-
}) : this.condition.drop_side_effect_free(compressor);
|
|
2365
|
-
if (!alternative) return make_node(AST_Binary, this, {
|
|
2366
|
-
operator: "&&",
|
|
2367
|
-
left: this.condition,
|
|
2368
|
-
right: consequent
|
|
2369
|
-
});
|
|
2370
|
-
var node = this.clone();
|
|
2371
|
-
node.consequent = consequent;
|
|
2372
|
-
node.alternative = alternative;
|
|
2373
|
-
return node;
|
|
2374
|
-
});
|
|
2375
|
-
def(AST_Unary, function(compressor, first_in_statement){
|
|
2376
|
-
if (unary_side_effects(this.operator)) return this;
|
|
2377
|
-
if (this.operator == "typeof" && this.expression instanceof AST_SymbolRef) return null;
|
|
2378
|
-
var expression = this.expression.drop_side_effect_free(compressor, first_in_statement);
|
|
2379
|
-
if (first_in_statement
|
|
2380
|
-
&& this instanceof AST_UnaryPrefix
|
|
2381
|
-
&& is_iife_call(expression)) {
|
|
2382
|
-
if (expression === this.expression && this.operator.length === 1) return this;
|
|
2383
|
-
return make_node(AST_UnaryPrefix, this, {
|
|
2384
|
-
operator: this.operator.length === 1 ? this.operator : "!",
|
|
2385
|
-
expression: expression
|
|
2386
|
-
});
|
|
2387
|
-
}
|
|
2388
|
-
return expression;
|
|
2389
|
-
});
|
|
2390
|
-
def(AST_SymbolRef, function() {
|
|
2391
|
-
return this.undeclared() ? this : null;
|
|
2392
|
-
});
|
|
2393
|
-
def(AST_Object, function(compressor, first_in_statement){
|
|
2394
|
-
var values = trim(this.properties, compressor, first_in_statement);
|
|
2395
|
-
return values && AST_Seq.from_array(values);
|
|
2396
|
-
});
|
|
2397
|
-
def(AST_ObjectProperty, function(compressor, first_in_statement){
|
|
2398
|
-
return this.value.drop_side_effect_free(compressor, first_in_statement);
|
|
2399
|
-
});
|
|
2400
|
-
def(AST_Array, function(compressor, first_in_statement){
|
|
2401
|
-
var values = trim(this.elements, compressor, first_in_statement);
|
|
2402
|
-
return values && AST_Seq.from_array(values);
|
|
2403
|
-
});
|
|
2404
|
-
def(AST_Dot, function(compressor, first_in_statement){
|
|
2405
|
-
if (this.expression.may_throw_on_access(compressor)) return this;
|
|
2406
|
-
return this.expression.drop_side_effect_free(compressor, first_in_statement);
|
|
2407
|
-
});
|
|
2408
|
-
def(AST_Sub, function(compressor, first_in_statement){
|
|
2409
|
-
if (this.expression.may_throw_on_access(compressor)) return this;
|
|
2410
|
-
var expression = this.expression.drop_side_effect_free(compressor, first_in_statement);
|
|
2411
|
-
if (!expression) return this.property.drop_side_effect_free(compressor, first_in_statement);
|
|
2412
|
-
var property = this.property.drop_side_effect_free(compressor);
|
|
2413
|
-
if (!property) return expression;
|
|
2414
|
-
return make_node(AST_Seq, this, {
|
|
2415
|
-
car: expression,
|
|
2416
|
-
cdr: property
|
|
2417
|
-
});
|
|
2418
|
-
});
|
|
2419
|
-
def(AST_Seq, function(compressor){
|
|
2420
|
-
var cdr = this.cdr.drop_side_effect_free(compressor);
|
|
2421
|
-
if (cdr === this.cdr) return this;
|
|
2422
|
-
if (!cdr) return this.car;
|
|
2423
|
-
return make_node(AST_Seq, this, {
|
|
2424
|
-
car: this.car,
|
|
2425
|
-
cdr: cdr
|
|
2426
|
-
});
|
|
2427
|
-
});
|
|
2428
|
-
})(function(node, func){
|
|
2429
|
-
node.DEFMETHOD("drop_side_effect_free", func);
|
|
2430
|
-
});
|
|
2431
|
-
|
|
2432
|
-
OPT(AST_SimpleStatement, function(self, compressor){
|
|
2433
|
-
if (compressor.option("side_effects")) {
|
|
2434
|
-
var body = self.body;
|
|
2435
|
-
var node = body.drop_side_effect_free(compressor, true);
|
|
2436
|
-
if (!node) {
|
|
2437
|
-
compressor.warn("Dropping side-effect-free statement [{file}:{line},{col}]", self.start);
|
|
2438
|
-
return make_node(AST_EmptyStatement, self);
|
|
2439
|
-
}
|
|
2440
|
-
if (node !== body) {
|
|
2441
|
-
return make_node(AST_SimpleStatement, self, { body: node });
|
|
2442
|
-
}
|
|
2443
|
-
}
|
|
2444
|
-
return self;
|
|
2445
|
-
});
|
|
2446
|
-
|
|
2447
|
-
OPT(AST_DWLoop, function(self, compressor){
|
|
2448
|
-
if (!compressor.option("loops")) return self;
|
|
2449
|
-
var cond = self.condition.evaluate(compressor);
|
|
2450
|
-
if (cond !== self.condition) {
|
|
2451
|
-
if (cond) {
|
|
2452
|
-
return make_node(AST_For, self, {
|
|
2453
|
-
body: self.body
|
|
2454
|
-
});
|
|
2455
|
-
}
|
|
2456
|
-
if (compressor.option("dead_code") && self instanceof AST_While) {
|
|
2457
|
-
var a = [];
|
|
2458
|
-
extract_declarations_from_unreachable_code(compressor, self.body, a);
|
|
2459
|
-
return make_node(AST_BlockStatement, self, { body: a }).optimize(compressor);
|
|
2460
|
-
}
|
|
2461
|
-
if (self instanceof AST_Do) {
|
|
2462
|
-
var has_loop_control = false;
|
|
2463
|
-
var tw = new TreeWalker(function(node) {
|
|
2464
|
-
if (node instanceof AST_Scope || has_loop_control) return true;
|
|
2465
|
-
if (node instanceof AST_LoopControl && tw.loopcontrol_target(node) === self)
|
|
2466
|
-
return has_loop_control = true;
|
|
2467
|
-
});
|
|
2468
|
-
var parent = compressor.parent();
|
|
2469
|
-
(parent instanceof AST_LabeledStatement ? parent : self).walk(tw);
|
|
2470
|
-
if (!has_loop_control) return self.body;
|
|
2471
|
-
}
|
|
2472
|
-
}
|
|
2473
|
-
if (self instanceof AST_While) {
|
|
2474
|
-
return make_node(AST_For, self, self).optimize(compressor);
|
|
2475
|
-
}
|
|
2476
|
-
return self;
|
|
2477
|
-
});
|
|
2478
|
-
|
|
2479
|
-
function if_break_in_loop(self, compressor) {
|
|
2480
|
-
function drop_it(rest) {
|
|
2481
|
-
rest = as_statement_array(rest);
|
|
2482
|
-
if (self.body instanceof AST_BlockStatement) {
|
|
2483
|
-
self.body = self.body.clone();
|
|
2484
|
-
self.body.body = rest.concat(self.body.body.slice(1));
|
|
2485
|
-
self.body = self.body.transform(compressor);
|
|
2486
|
-
} else {
|
|
2487
|
-
self.body = make_node(AST_BlockStatement, self.body, {
|
|
2488
|
-
body: rest
|
|
2489
|
-
}).transform(compressor);
|
|
2490
|
-
}
|
|
2491
|
-
if_break_in_loop(self, compressor);
|
|
2492
|
-
}
|
|
2493
|
-
var first = self.body instanceof AST_BlockStatement ? self.body.body[0] : self.body;
|
|
2494
|
-
if (first instanceof AST_If) {
|
|
2495
|
-
if (first.body instanceof AST_Break
|
|
2496
|
-
&& compressor.loopcontrol_target(first.body) === compressor.self()) {
|
|
2497
|
-
if (self.condition) {
|
|
2498
|
-
self.condition = make_node(AST_Binary, self.condition, {
|
|
2499
|
-
left: self.condition,
|
|
2500
|
-
operator: "&&",
|
|
2501
|
-
right: first.condition.negate(compressor),
|
|
2502
|
-
});
|
|
2503
|
-
} else {
|
|
2504
|
-
self.condition = first.condition.negate(compressor);
|
|
2505
|
-
}
|
|
2506
|
-
drop_it(first.alternative);
|
|
2507
|
-
}
|
|
2508
|
-
else if (first.alternative instanceof AST_Break
|
|
2509
|
-
&& compressor.loopcontrol_target(first.alternative) === compressor.self()) {
|
|
2510
|
-
if (self.condition) {
|
|
2511
|
-
self.condition = make_node(AST_Binary, self.condition, {
|
|
2512
|
-
left: self.condition,
|
|
2513
|
-
operator: "&&",
|
|
2514
|
-
right: first.condition,
|
|
2515
|
-
});
|
|
2516
|
-
} else {
|
|
2517
|
-
self.condition = first.condition;
|
|
2518
|
-
}
|
|
2519
|
-
drop_it(first.body);
|
|
2520
|
-
}
|
|
2521
|
-
}
|
|
2522
|
-
};
|
|
2523
|
-
|
|
2524
|
-
OPT(AST_For, function(self, compressor){
|
|
2525
|
-
if (!compressor.option("loops")) return self;
|
|
2526
|
-
if (self.condition) {
|
|
2527
|
-
var cond = self.condition.evaluate(compressor);
|
|
2528
|
-
if (compressor.option("dead_code") && !cond) {
|
|
2529
|
-
var a = [];
|
|
2530
|
-
if (self.init instanceof AST_Statement) {
|
|
2531
|
-
a.push(self.init);
|
|
2532
|
-
}
|
|
2533
|
-
else if (self.init) {
|
|
2534
|
-
a.push(make_node(AST_SimpleStatement, self.init, {
|
|
2535
|
-
body: self.init
|
|
2536
|
-
}));
|
|
2537
|
-
}
|
|
2538
|
-
extract_declarations_from_unreachable_code(compressor, self.body, a);
|
|
2539
|
-
return make_node(AST_BlockStatement, self, { body: a }).optimize(compressor);
|
|
2540
|
-
}
|
|
2541
|
-
if (cond !== self.condition) {
|
|
2542
|
-
cond = make_node_from_constant(cond, self.condition).transform(compressor);
|
|
2543
|
-
self.condition = best_of_expression(cond, self.condition);
|
|
2544
|
-
}
|
|
2545
|
-
}
|
|
2546
|
-
if_break_in_loop(self, compressor);
|
|
2547
|
-
return self;
|
|
2548
|
-
});
|
|
2549
|
-
|
|
2550
|
-
OPT(AST_If, function(self, compressor){
|
|
2551
|
-
if (is_empty(self.alternative)) self.alternative = null;
|
|
2552
|
-
|
|
2553
|
-
if (!compressor.option("conditionals")) return self;
|
|
2554
|
-
// if condition can be statically determined, warn and drop
|
|
2555
|
-
// one of the blocks. note, statically determined implies
|
|
2556
|
-
// “has no side effects”; also it doesn't work for cases like
|
|
2557
|
-
// `x && true`, though it probably should.
|
|
2558
|
-
var cond = self.condition.evaluate(compressor);
|
|
2559
|
-
if (cond !== self.condition) {
|
|
2560
|
-
if (cond) {
|
|
2561
|
-
compressor.warn("Condition always true [{file}:{line},{col}]", self.condition.start);
|
|
2562
|
-
if (compressor.option("dead_code")) {
|
|
2563
|
-
var a = [];
|
|
2564
|
-
if (self.alternative) {
|
|
2565
|
-
extract_declarations_from_unreachable_code(compressor, self.alternative, a);
|
|
2566
|
-
}
|
|
2567
|
-
a.push(self.body);
|
|
2568
|
-
return make_node(AST_BlockStatement, self, { body: a }).optimize(compressor);
|
|
2569
|
-
}
|
|
2570
|
-
} else {
|
|
2571
|
-
compressor.warn("Condition always false [{file}:{line},{col}]", self.condition.start);
|
|
2572
|
-
if (compressor.option("dead_code")) {
|
|
2573
|
-
var a = [];
|
|
2574
|
-
extract_declarations_from_unreachable_code(compressor, self.body, a);
|
|
2575
|
-
if (self.alternative) a.push(self.alternative);
|
|
2576
|
-
return make_node(AST_BlockStatement, self, { body: a }).optimize(compressor);
|
|
2577
|
-
}
|
|
2578
|
-
}
|
|
2579
|
-
cond = make_node_from_constant(cond, self.condition).transform(compressor);
|
|
2580
|
-
self.condition = best_of_expression(cond, self.condition);
|
|
2581
|
-
}
|
|
2582
|
-
var negated = self.condition.negate(compressor);
|
|
2583
|
-
var self_condition_length = self.condition.print_to_string().length;
|
|
2584
|
-
var negated_length = negated.print_to_string().length;
|
|
2585
|
-
var negated_is_best = negated_length < self_condition_length;
|
|
2586
|
-
if (self.alternative && negated_is_best) {
|
|
2587
|
-
negated_is_best = false; // because we already do the switch here.
|
|
2588
|
-
// no need to swap values of self_condition_length and negated_length
|
|
2589
|
-
// here because they are only used in an equality comparison later on.
|
|
2590
|
-
self.condition = negated;
|
|
2591
|
-
var tmp = self.body;
|
|
2592
|
-
self.body = self.alternative || make_node(AST_EmptyStatement, self);
|
|
2593
|
-
self.alternative = tmp;
|
|
2594
|
-
}
|
|
2595
|
-
if (is_empty(self.body) && is_empty(self.alternative)) {
|
|
2596
|
-
return make_node(AST_SimpleStatement, self.condition, {
|
|
2597
|
-
body: self.condition.clone()
|
|
2598
|
-
}).optimize(compressor);
|
|
2599
|
-
}
|
|
2600
|
-
if (self.body instanceof AST_SimpleStatement
|
|
2601
|
-
&& self.alternative instanceof AST_SimpleStatement) {
|
|
2602
|
-
return make_node(AST_SimpleStatement, self, {
|
|
2603
|
-
body: make_node(AST_Conditional, self, {
|
|
2604
|
-
condition : self.condition,
|
|
2605
|
-
consequent : self.body.body,
|
|
2606
|
-
alternative : self.alternative.body
|
|
2607
|
-
})
|
|
2608
|
-
}).optimize(compressor);
|
|
2609
|
-
}
|
|
2610
|
-
if (is_empty(self.alternative) && self.body instanceof AST_SimpleStatement) {
|
|
2611
|
-
if (self_condition_length === negated_length && !negated_is_best
|
|
2612
|
-
&& self.condition instanceof AST_Binary && self.condition.operator == "||") {
|
|
2613
|
-
// although the code length of self.condition and negated are the same,
|
|
2614
|
-
// negated does not require additional surrounding parentheses.
|
|
2615
|
-
// see https://github.com/mishoo/UglifyJS2/issues/979
|
|
2616
|
-
negated_is_best = true;
|
|
2617
|
-
}
|
|
2618
|
-
if (negated_is_best) return make_node(AST_SimpleStatement, self, {
|
|
2619
|
-
body: make_node(AST_Binary, self, {
|
|
2620
|
-
operator : "||",
|
|
2621
|
-
left : negated,
|
|
2622
|
-
right : self.body.body
|
|
2623
|
-
})
|
|
2624
|
-
}).optimize(compressor);
|
|
2625
|
-
return make_node(AST_SimpleStatement, self, {
|
|
2626
|
-
body: make_node(AST_Binary, self, {
|
|
2627
|
-
operator : "&&",
|
|
2628
|
-
left : self.condition,
|
|
2629
|
-
right : self.body.body
|
|
2630
|
-
})
|
|
2631
|
-
}).optimize(compressor);
|
|
2632
|
-
}
|
|
2633
|
-
if (self.body instanceof AST_EmptyStatement
|
|
2634
|
-
&& self.alternative instanceof AST_SimpleStatement) {
|
|
2635
|
-
return make_node(AST_SimpleStatement, self, {
|
|
2636
|
-
body: make_node(AST_Binary, self, {
|
|
2637
|
-
operator : "||",
|
|
2638
|
-
left : self.condition,
|
|
2639
|
-
right : self.alternative.body
|
|
2640
|
-
})
|
|
2641
|
-
}).optimize(compressor);
|
|
2642
|
-
}
|
|
2643
|
-
if (self.body instanceof AST_Exit
|
|
2644
|
-
&& self.alternative instanceof AST_Exit
|
|
2645
|
-
&& self.body.TYPE == self.alternative.TYPE) {
|
|
2646
|
-
return make_node(self.body.CTOR, self, {
|
|
2647
|
-
value: make_node(AST_Conditional, self, {
|
|
2648
|
-
condition : self.condition,
|
|
2649
|
-
consequent : self.body.value || make_node(AST_Undefined, self.body),
|
|
2650
|
-
alternative : self.alternative.value || make_node(AST_Undefined, self.alternative)
|
|
2651
|
-
}).transform(compressor)
|
|
2652
|
-
}).optimize(compressor);
|
|
2653
|
-
}
|
|
2654
|
-
if (self.body instanceof AST_If
|
|
2655
|
-
&& !self.body.alternative
|
|
2656
|
-
&& !self.alternative) {
|
|
2657
|
-
self = make_node(AST_If, self, {
|
|
2658
|
-
condition: make_node(AST_Binary, self.condition, {
|
|
2659
|
-
operator: "&&",
|
|
2660
|
-
left: self.condition,
|
|
2661
|
-
right: self.body.condition
|
|
2662
|
-
}),
|
|
2663
|
-
body: self.body.body,
|
|
2664
|
-
alternative: null
|
|
2665
|
-
});
|
|
2666
|
-
}
|
|
2667
|
-
if (aborts(self.body)) {
|
|
2668
|
-
if (self.alternative) {
|
|
2669
|
-
var alt = self.alternative;
|
|
2670
|
-
self.alternative = null;
|
|
2671
|
-
return make_node(AST_BlockStatement, self, {
|
|
2672
|
-
body: [ self, alt ]
|
|
2673
|
-
}).optimize(compressor);
|
|
2674
|
-
}
|
|
2675
|
-
}
|
|
2676
|
-
if (aborts(self.alternative)) {
|
|
2677
|
-
var body = self.body;
|
|
2678
|
-
self.body = self.alternative;
|
|
2679
|
-
self.condition = negated_is_best ? negated : self.condition.negate(compressor);
|
|
2680
|
-
self.alternative = null;
|
|
2681
|
-
return make_node(AST_BlockStatement, self, {
|
|
2682
|
-
body: [ self, body ]
|
|
2683
|
-
}).optimize(compressor);
|
|
2684
|
-
}
|
|
2685
|
-
return self;
|
|
2686
|
-
});
|
|
2687
|
-
|
|
2688
|
-
OPT(AST_Switch, function(self, compressor){
|
|
2689
|
-
if (!compressor.option("switches")) return self;
|
|
2690
|
-
var branch;
|
|
2691
|
-
var value = self.expression.evaluate(compressor);
|
|
2692
|
-
if (value !== self.expression) {
|
|
2693
|
-
var expression = make_node_from_constant(value, self.expression).transform(compressor);
|
|
2694
|
-
self.expression = best_of_expression(expression, self.expression);
|
|
2695
|
-
}
|
|
2696
|
-
if (!compressor.option("dead_code")) return self;
|
|
2697
|
-
var decl = [];
|
|
2698
|
-
var body = [];
|
|
2699
|
-
var default_branch;
|
|
2700
|
-
var exact_match;
|
|
2701
|
-
for (var i = 0, len = self.body.length; i < len && !exact_match; i++) {
|
|
2702
|
-
branch = self.body[i];
|
|
2703
|
-
if (branch instanceof AST_Default) {
|
|
2704
|
-
if (!default_branch) {
|
|
2705
|
-
default_branch = branch;
|
|
2706
|
-
} else {
|
|
2707
|
-
eliminate_branch(branch, body[body.length - 1]);
|
|
2708
|
-
}
|
|
2709
|
-
} else if (value !== self.expression) {
|
|
2710
|
-
var exp = branch.expression.evaluate(compressor);
|
|
2711
|
-
if (exp === value) {
|
|
2712
|
-
exact_match = branch;
|
|
2713
|
-
if (default_branch) {
|
|
2714
|
-
var default_index = body.indexOf(default_branch);
|
|
2715
|
-
body.splice(default_index, 1);
|
|
2716
|
-
eliminate_branch(default_branch, body[default_index - 1]);
|
|
2717
|
-
default_branch = null;
|
|
2718
|
-
}
|
|
2719
|
-
} else if (exp !== branch.expression) {
|
|
2720
|
-
eliminate_branch(branch, body[body.length - 1]);
|
|
2721
|
-
continue;
|
|
2722
|
-
}
|
|
2723
|
-
}
|
|
2724
|
-
if (aborts(branch)) {
|
|
2725
|
-
var prev = body[body.length - 1];
|
|
2726
|
-
if (aborts(prev) && prev.body.length == branch.body.length
|
|
2727
|
-
&& make_node(AST_BlockStatement, prev, prev).equivalent_to(make_node(AST_BlockStatement, branch, branch))) {
|
|
2728
|
-
prev.body = [];
|
|
2729
|
-
}
|
|
2730
|
-
}
|
|
2731
|
-
body.push(branch);
|
|
2732
|
-
}
|
|
2733
|
-
while (i < len) eliminate_branch(self.body[i++], body[body.length - 1]);
|
|
2734
|
-
if (body.length > 0) {
|
|
2735
|
-
body[0].body = decl.concat(body[0].body);
|
|
2736
|
-
}
|
|
2737
|
-
self.body = body;
|
|
2738
|
-
while (branch = body[body.length - 1]) {
|
|
2739
|
-
var stat = branch.body[branch.body.length - 1];
|
|
2740
|
-
if (stat instanceof AST_Break && compressor.loopcontrol_target(stat) === self)
|
|
2741
|
-
branch.body.pop();
|
|
2742
|
-
if (branch.body.length || branch instanceof AST_Case
|
|
2743
|
-
&& (default_branch || branch.expression.has_side_effects(compressor))) break;
|
|
2744
|
-
if (body.pop() === default_branch) default_branch = null;
|
|
2745
|
-
}
|
|
2746
|
-
if (body.length == 0) {
|
|
2747
|
-
return make_node(AST_BlockStatement, self, {
|
|
2748
|
-
body: decl.concat(make_node(AST_SimpleStatement, self.expression, {
|
|
2749
|
-
body: self.expression
|
|
2750
|
-
}))
|
|
2751
|
-
}).optimize(compressor);
|
|
2752
|
-
}
|
|
2753
|
-
if (body.length == 1 && (body[0] === exact_match || body[0] === default_branch)) {
|
|
2754
|
-
var has_break = false;
|
|
2755
|
-
var tw = new TreeWalker(function(node) {
|
|
2756
|
-
if (has_break
|
|
2757
|
-
|| node instanceof AST_Lambda
|
|
2758
|
-
|| node instanceof AST_SimpleStatement) return true;
|
|
2759
|
-
if (node instanceof AST_Break && tw.loopcontrol_target(node) === self)
|
|
2760
|
-
has_break = true;
|
|
2761
|
-
});
|
|
2762
|
-
self.walk(tw);
|
|
2763
|
-
if (!has_break) {
|
|
2764
|
-
body = body[0].body.slice();
|
|
2765
|
-
body.unshift(make_node(AST_SimpleStatement, self.expression, {
|
|
2766
|
-
body: self.expression
|
|
2767
|
-
}));
|
|
2768
|
-
return make_node(AST_BlockStatement, self, {
|
|
2769
|
-
body: body
|
|
2770
|
-
}).optimize(compressor);
|
|
2771
|
-
}
|
|
2772
|
-
}
|
|
2773
|
-
return self;
|
|
2774
|
-
|
|
2775
|
-
function eliminate_branch(branch, prev) {
|
|
2776
|
-
if (prev && !aborts(prev)) {
|
|
2777
|
-
prev.body = prev.body.concat(branch.body);
|
|
2778
|
-
} else {
|
|
2779
|
-
extract_declarations_from_unreachable_code(compressor, branch, decl);
|
|
2780
|
-
}
|
|
2781
|
-
}
|
|
2782
|
-
});
|
|
2783
|
-
|
|
2784
|
-
OPT(AST_Try, function(self, compressor){
|
|
2785
|
-
self.body = tighten_body(self.body, compressor);
|
|
2786
|
-
if (self.bcatch && self.bfinally && all(self.bfinally.body, is_empty)) self.bfinally = null;
|
|
2787
|
-
if (all(self.body, is_empty)) {
|
|
2788
|
-
var body = [];
|
|
2789
|
-
if (self.bcatch) extract_declarations_from_unreachable_code(compressor, self.bcatch, body);
|
|
2790
|
-
if (self.bfinally) body = body.concat(self.bfinally.body);
|
|
2791
|
-
return make_node(AST_BlockStatement, self, {
|
|
2792
|
-
body: body
|
|
2793
|
-
}).optimize(compressor);
|
|
2794
|
-
}
|
|
2795
|
-
return self;
|
|
2796
|
-
});
|
|
2797
|
-
|
|
2798
|
-
AST_Definitions.DEFMETHOD("remove_initializers", function(){
|
|
2799
|
-
this.definitions.forEach(function(def){ def.value = null });
|
|
2800
|
-
});
|
|
2801
|
-
|
|
2802
|
-
AST_Definitions.DEFMETHOD("to_assignments", function(compressor){
|
|
2803
|
-
var reduce_vars = compressor.option("reduce_vars");
|
|
2804
|
-
var assignments = this.definitions.reduce(function(a, def){
|
|
2805
|
-
if (def.value) {
|
|
2806
|
-
var name = make_node(AST_SymbolRef, def.name, def.name);
|
|
2807
|
-
a.push(make_node(AST_Assign, def, {
|
|
2808
|
-
operator : "=",
|
|
2809
|
-
left : name,
|
|
2810
|
-
right : def.value
|
|
2811
|
-
}));
|
|
2812
|
-
if (reduce_vars) name.definition().fixed = false;
|
|
2813
|
-
}
|
|
2814
|
-
return a;
|
|
2815
|
-
}, []);
|
|
2816
|
-
if (assignments.length == 0) return null;
|
|
2817
|
-
return AST_Seq.from_array(assignments);
|
|
2818
|
-
});
|
|
2819
|
-
|
|
2820
|
-
OPT(AST_Definitions, function(self, compressor){
|
|
2821
|
-
if (self.definitions.length == 0)
|
|
2822
|
-
return make_node(AST_EmptyStatement, self);
|
|
2823
|
-
return self;
|
|
2824
|
-
});
|
|
2825
|
-
|
|
2826
|
-
OPT(AST_Call, function(self, compressor){
|
|
2827
|
-
var exp = self.expression;
|
|
2828
|
-
if (compressor.option("reduce_vars")
|
|
2829
|
-
&& exp instanceof AST_SymbolRef) {
|
|
2830
|
-
var def = exp.definition();
|
|
2831
|
-
var fixed = exp.fixed_value();
|
|
2832
|
-
if (fixed instanceof AST_Defun) {
|
|
2833
|
-
def.fixed = fixed = make_node(AST_Function, fixed, fixed).clone(true);
|
|
2834
|
-
}
|
|
2835
|
-
if (fixed instanceof AST_Function) {
|
|
2836
|
-
exp = fixed;
|
|
2837
|
-
if (compressor.option("unused")
|
|
2838
|
-
&& def.references.length == 1
|
|
2839
|
-
&& !(def.scope.uses_arguments
|
|
2840
|
-
&& def.orig[0] instanceof AST_SymbolFunarg)
|
|
2841
|
-
&& !def.scope.uses_eval
|
|
2842
|
-
&& compressor.find_parent(AST_Scope) === def.scope) {
|
|
2843
|
-
self.expression = exp;
|
|
2844
|
-
}
|
|
2845
|
-
}
|
|
2846
|
-
}
|
|
2847
|
-
if (compressor.option("unused")
|
|
2848
|
-
&& exp instanceof AST_Function
|
|
2849
|
-
&& !exp.uses_arguments
|
|
2850
|
-
&& !exp.uses_eval) {
|
|
2851
|
-
var pos = 0, last = 0;
|
|
2852
|
-
for (var i = 0, len = self.args.length; i < len; i++) {
|
|
2853
|
-
var trim = i >= exp.argnames.length;
|
|
2854
|
-
if (trim || exp.argnames[i].__unused) {
|
|
2855
|
-
var node = self.args[i].drop_side_effect_free(compressor);
|
|
2856
|
-
if (node) {
|
|
2857
|
-
self.args[pos++] = node;
|
|
2858
|
-
} else if (!trim) {
|
|
2859
|
-
self.args[pos++] = make_node(AST_Number, self.args[i], {
|
|
2860
|
-
value: 0
|
|
2861
|
-
});
|
|
2862
|
-
continue;
|
|
2863
|
-
}
|
|
2864
|
-
} else {
|
|
2865
|
-
self.args[pos++] = self.args[i];
|
|
2866
|
-
}
|
|
2867
|
-
last = pos;
|
|
2868
|
-
}
|
|
2869
|
-
self.args.length = last;
|
|
2870
|
-
}
|
|
2871
|
-
if (compressor.option("unsafe")) {
|
|
2872
|
-
if (exp instanceof AST_SymbolRef && exp.undeclared()) {
|
|
2873
|
-
switch (exp.name) {
|
|
2874
|
-
case "Array":
|
|
2875
|
-
if (self.args.length != 1) {
|
|
2876
|
-
return make_node(AST_Array, self, {
|
|
2877
|
-
elements: self.args
|
|
2878
|
-
}).optimize(compressor);
|
|
2879
|
-
}
|
|
2880
|
-
break;
|
|
2881
|
-
case "Object":
|
|
2882
|
-
if (self.args.length == 0) {
|
|
2883
|
-
return make_node(AST_Object, self, {
|
|
2884
|
-
properties: []
|
|
2885
|
-
});
|
|
2886
|
-
}
|
|
2887
|
-
break;
|
|
2888
|
-
case "String":
|
|
2889
|
-
if (self.args.length == 0) return make_node(AST_String, self, {
|
|
2890
|
-
value: ""
|
|
2891
|
-
});
|
|
2892
|
-
if (self.args.length <= 1) return make_node(AST_Binary, self, {
|
|
2893
|
-
left: self.args[0],
|
|
2894
|
-
operator: "+",
|
|
2895
|
-
right: make_node(AST_String, self, { value: "" })
|
|
2896
|
-
}).optimize(compressor);
|
|
2897
|
-
break;
|
|
2898
|
-
case "Number":
|
|
2899
|
-
if (self.args.length == 0) return make_node(AST_Number, self, {
|
|
2900
|
-
value: 0
|
|
2901
|
-
});
|
|
2902
|
-
if (self.args.length == 1) return make_node(AST_UnaryPrefix, self, {
|
|
2903
|
-
expression: self.args[0],
|
|
2904
|
-
operator: "+"
|
|
2905
|
-
}).optimize(compressor);
|
|
2906
|
-
case "Boolean":
|
|
2907
|
-
if (self.args.length == 0) return make_node(AST_False, self);
|
|
2908
|
-
if (self.args.length == 1) return make_node(AST_UnaryPrefix, self, {
|
|
2909
|
-
expression: make_node(AST_UnaryPrefix, self, {
|
|
2910
|
-
expression: self.args[0],
|
|
2911
|
-
operator: "!"
|
|
2912
|
-
}),
|
|
2913
|
-
operator: "!"
|
|
2914
|
-
}).optimize(compressor);
|
|
2915
|
-
break;
|
|
2916
|
-
case "Function":
|
|
2917
|
-
// new Function() => function(){}
|
|
2918
|
-
if (self.args.length == 0) return make_node(AST_Function, self, {
|
|
2919
|
-
argnames: [],
|
|
2920
|
-
body: []
|
|
2921
|
-
});
|
|
2922
|
-
if (all(self.args, function(x){ return x instanceof AST_String })) {
|
|
2923
|
-
// quite a corner-case, but we can handle it:
|
|
2924
|
-
// https://github.com/mishoo/UglifyJS2/issues/203
|
|
2925
|
-
// if the code argument is a constant, then we can minify it.
|
|
2926
|
-
try {
|
|
2927
|
-
var code = "(function(" + self.args.slice(0, -1).map(function(arg){
|
|
2928
|
-
return arg.value;
|
|
2929
|
-
}).join(",") + "){" + self.args[self.args.length - 1].value + "})()";
|
|
2930
|
-
var ast = parse(code);
|
|
2931
|
-
ast.figure_out_scope({ screw_ie8: compressor.option("screw_ie8") });
|
|
2932
|
-
var comp = new Compressor(compressor.options);
|
|
2933
|
-
ast = ast.transform(comp);
|
|
2934
|
-
ast.figure_out_scope({ screw_ie8: compressor.option("screw_ie8") });
|
|
2935
|
-
ast.mangle_names();
|
|
2936
|
-
var fun;
|
|
2937
|
-
try {
|
|
2938
|
-
ast.walk(new TreeWalker(function(node){
|
|
2939
|
-
if (node instanceof AST_Lambda) {
|
|
2940
|
-
fun = node;
|
|
2941
|
-
throw ast;
|
|
2942
|
-
}
|
|
2943
|
-
}));
|
|
2944
|
-
} catch(ex) {
|
|
2945
|
-
if (ex !== ast) throw ex;
|
|
2946
|
-
};
|
|
2947
|
-
if (!fun) return self;
|
|
2948
|
-
var args = fun.argnames.map(function(arg, i){
|
|
2949
|
-
return make_node(AST_String, self.args[i], {
|
|
2950
|
-
value: arg.print_to_string()
|
|
2951
|
-
});
|
|
2952
|
-
});
|
|
2953
|
-
var code = OutputStream();
|
|
2954
|
-
AST_BlockStatement.prototype._codegen.call(fun, fun, code);
|
|
2955
|
-
code = code.toString().replace(/^\{|\}$/g, "");
|
|
2956
|
-
args.push(make_node(AST_String, self.args[self.args.length - 1], {
|
|
2957
|
-
value: code
|
|
2958
|
-
}));
|
|
2959
|
-
self.args = args;
|
|
2960
|
-
return self;
|
|
2961
|
-
} catch(ex) {
|
|
2962
|
-
if (ex instanceof JS_Parse_Error) {
|
|
2963
|
-
compressor.warn("Error parsing code passed to new Function [{file}:{line},{col}]", self.args[self.args.length - 1].start);
|
|
2964
|
-
compressor.warn(ex.toString());
|
|
2965
|
-
} else {
|
|
2966
|
-
console.log(ex);
|
|
2967
|
-
throw ex;
|
|
2968
|
-
}
|
|
2969
|
-
}
|
|
2970
|
-
}
|
|
2971
|
-
break;
|
|
2972
|
-
}
|
|
2973
|
-
}
|
|
2974
|
-
else if (exp instanceof AST_Dot && exp.property == "toString" && self.args.length == 0) {
|
|
2975
|
-
return make_node(AST_Binary, self, {
|
|
2976
|
-
left: make_node(AST_String, self, { value: "" }),
|
|
2977
|
-
operator: "+",
|
|
2978
|
-
right: exp.expression
|
|
2979
|
-
}).optimize(compressor);
|
|
2980
|
-
}
|
|
2981
|
-
else if (exp instanceof AST_Dot && exp.expression instanceof AST_Array && exp.property == "join") EXIT: {
|
|
2982
|
-
var separator;
|
|
2983
|
-
if (self.args.length > 0) {
|
|
2984
|
-
separator = self.args[0].evaluate(compressor);
|
|
2985
|
-
if (separator === self.args[0]) break EXIT; // not a constant
|
|
2986
|
-
}
|
|
2987
|
-
var elements = [];
|
|
2988
|
-
var consts = [];
|
|
2989
|
-
exp.expression.elements.forEach(function(el) {
|
|
2990
|
-
var value = el.evaluate(compressor);
|
|
2991
|
-
if (value !== el) {
|
|
2992
|
-
consts.push(value);
|
|
2993
|
-
} else {
|
|
2994
|
-
if (consts.length > 0) {
|
|
2995
|
-
elements.push(make_node(AST_String, self, {
|
|
2996
|
-
value: consts.join(separator)
|
|
2997
|
-
}));
|
|
2998
|
-
consts.length = 0;
|
|
2999
|
-
}
|
|
3000
|
-
elements.push(el);
|
|
3001
|
-
}
|
|
3002
|
-
});
|
|
3003
|
-
if (consts.length > 0) {
|
|
3004
|
-
elements.push(make_node(AST_String, self, {
|
|
3005
|
-
value: consts.join(separator)
|
|
3006
|
-
}));
|
|
3007
|
-
}
|
|
3008
|
-
if (elements.length == 0) return make_node(AST_String, self, { value: "" });
|
|
3009
|
-
if (elements.length == 1) {
|
|
3010
|
-
if (elements[0].is_string(compressor)) {
|
|
3011
|
-
return elements[0];
|
|
3012
|
-
}
|
|
3013
|
-
return make_node(AST_Binary, elements[0], {
|
|
3014
|
-
operator : "+",
|
|
3015
|
-
left : make_node(AST_String, self, { value: "" }),
|
|
3016
|
-
right : elements[0]
|
|
3017
|
-
});
|
|
3018
|
-
}
|
|
3019
|
-
if (separator == "") {
|
|
3020
|
-
var first;
|
|
3021
|
-
if (elements[0].is_string(compressor)
|
|
3022
|
-
|| elements[1].is_string(compressor)) {
|
|
3023
|
-
first = elements.shift();
|
|
3024
|
-
} else {
|
|
3025
|
-
first = make_node(AST_String, self, { value: "" });
|
|
3026
|
-
}
|
|
3027
|
-
return elements.reduce(function(prev, el){
|
|
3028
|
-
return make_node(AST_Binary, el, {
|
|
3029
|
-
operator : "+",
|
|
3030
|
-
left : prev,
|
|
3031
|
-
right : el
|
|
3032
|
-
});
|
|
3033
|
-
}, first).optimize(compressor);
|
|
3034
|
-
}
|
|
3035
|
-
// need this awkward cloning to not affect original element
|
|
3036
|
-
// best_of will decide which one to get through.
|
|
3037
|
-
var node = self.clone();
|
|
3038
|
-
node.expression = node.expression.clone();
|
|
3039
|
-
node.expression.expression = node.expression.expression.clone();
|
|
3040
|
-
node.expression.expression.elements = elements;
|
|
3041
|
-
return best_of(compressor, self, node);
|
|
3042
|
-
}
|
|
3043
|
-
else if (exp instanceof AST_Dot && exp.expression.is_string(compressor) && exp.property == "charAt") {
|
|
3044
|
-
var arg = self.args[0];
|
|
3045
|
-
var index = arg ? arg.evaluate(compressor) : 0;
|
|
3046
|
-
if (index !== arg) {
|
|
3047
|
-
return make_node(AST_Sub, exp, {
|
|
3048
|
-
expression: exp.expression,
|
|
3049
|
-
property: make_node_from_constant(index | 0, arg || exp)
|
|
3050
|
-
}).optimize(compressor);
|
|
3051
|
-
}
|
|
3052
|
-
}
|
|
3053
|
-
}
|
|
3054
|
-
if (exp instanceof AST_Function) {
|
|
3055
|
-
if (exp.body[0] instanceof AST_Return) {
|
|
3056
|
-
var value = exp.body[0].value;
|
|
3057
|
-
if (!value || value.is_constant()) {
|
|
3058
|
-
var args = self.args.concat(value || make_node(AST_Undefined, self));
|
|
3059
|
-
return AST_Seq.from_array(args).transform(compressor);
|
|
3060
|
-
}
|
|
3061
|
-
}
|
|
3062
|
-
if (compressor.option("side_effects") && all(exp.body, is_empty)) {
|
|
3063
|
-
var args = self.args.concat(make_node(AST_Undefined, self));
|
|
3064
|
-
return AST_Seq.from_array(args).transform(compressor);
|
|
3065
|
-
}
|
|
3066
|
-
}
|
|
3067
|
-
if (compressor.option("drop_console")) {
|
|
3068
|
-
if (exp instanceof AST_PropAccess) {
|
|
3069
|
-
var name = exp.expression;
|
|
3070
|
-
while (name.expression) {
|
|
3071
|
-
name = name.expression;
|
|
3072
|
-
}
|
|
3073
|
-
if (name instanceof AST_SymbolRef
|
|
3074
|
-
&& name.name == "console"
|
|
3075
|
-
&& name.undeclared()) {
|
|
3076
|
-
return make_node(AST_Undefined, self).optimize(compressor);
|
|
3077
|
-
}
|
|
3078
|
-
}
|
|
3079
|
-
}
|
|
3080
|
-
if (compressor.option("negate_iife")
|
|
3081
|
-
&& compressor.parent() instanceof AST_SimpleStatement
|
|
3082
|
-
&& is_iife_call(self)) {
|
|
3083
|
-
return self.negate(compressor, true);
|
|
3084
|
-
}
|
|
3085
|
-
return self;
|
|
3086
|
-
});
|
|
3087
|
-
|
|
3088
|
-
OPT(AST_New, function(self, compressor){
|
|
3089
|
-
if (compressor.option("unsafe")) {
|
|
3090
|
-
var exp = self.expression;
|
|
3091
|
-
if (exp instanceof AST_SymbolRef && exp.undeclared()) {
|
|
3092
|
-
switch (exp.name) {
|
|
3093
|
-
case "Object":
|
|
3094
|
-
case "RegExp":
|
|
3095
|
-
case "Function":
|
|
3096
|
-
case "Error":
|
|
3097
|
-
case "Array":
|
|
3098
|
-
return make_node(AST_Call, self, self).transform(compressor);
|
|
3099
|
-
}
|
|
3100
|
-
}
|
|
3101
|
-
}
|
|
3102
|
-
return self;
|
|
3103
|
-
});
|
|
3104
|
-
|
|
3105
|
-
OPT(AST_Seq, function(self, compressor){
|
|
3106
|
-
if (!compressor.option("side_effects"))
|
|
3107
|
-
return self;
|
|
3108
|
-
self.car = self.car.drop_side_effect_free(compressor, first_in_statement(compressor));
|
|
3109
|
-
if (!self.car) return maintain_this_binding(compressor.parent(), self, self.cdr);
|
|
3110
|
-
if (compressor.option("cascade")) {
|
|
3111
|
-
var left;
|
|
3112
|
-
if (self.car instanceof AST_Assign
|
|
3113
|
-
&& !self.car.left.has_side_effects(compressor)) {
|
|
3114
|
-
left = self.car.left;
|
|
3115
|
-
} else if (self.car instanceof AST_Unary
|
|
3116
|
-
&& (self.car.operator == "++" || self.car.operator == "--")) {
|
|
3117
|
-
left = self.car.expression;
|
|
3118
|
-
}
|
|
3119
|
-
if (left
|
|
3120
|
-
&& !(left instanceof AST_SymbolRef
|
|
3121
|
-
&& (left.definition().orig[0] instanceof AST_SymbolLambda
|
|
3122
|
-
|| is_reference_const(left)))) {
|
|
3123
|
-
var parent, field;
|
|
3124
|
-
var cdr = self.cdr;
|
|
3125
|
-
while (true) {
|
|
3126
|
-
if (cdr.equivalent_to(left)) {
|
|
3127
|
-
var car = self.car instanceof AST_UnaryPostfix ? make_node(AST_UnaryPrefix, self.car, {
|
|
3128
|
-
operator: self.car.operator,
|
|
3129
|
-
expression: left
|
|
3130
|
-
}) : self.car;
|
|
3131
|
-
if (parent) {
|
|
3132
|
-
parent[field] = car;
|
|
3133
|
-
return self.cdr;
|
|
3134
|
-
}
|
|
3135
|
-
return car;
|
|
3136
|
-
}
|
|
3137
|
-
if (cdr instanceof AST_Binary && !(cdr instanceof AST_Assign)) {
|
|
3138
|
-
if (cdr.left.is_constant()) {
|
|
3139
|
-
if (cdr.operator == "||" || cdr.operator == "&&") break;
|
|
3140
|
-
field = "right";
|
|
3141
|
-
} else {
|
|
3142
|
-
field = "left";
|
|
3143
|
-
}
|
|
3144
|
-
} else if (cdr instanceof AST_Call
|
|
3145
|
-
|| cdr instanceof AST_Unary && !unary_side_effects(cdr.operator)) {
|
|
3146
|
-
field = "expression";
|
|
3147
|
-
} else break;
|
|
3148
|
-
parent = cdr;
|
|
3149
|
-
cdr = cdr[field];
|
|
3150
|
-
}
|
|
3151
|
-
}
|
|
3152
|
-
}
|
|
3153
|
-
if (is_undefined(self.cdr, compressor)) {
|
|
3154
|
-
return make_node(AST_UnaryPrefix, self, {
|
|
3155
|
-
operator : "void",
|
|
3156
|
-
expression : self.car
|
|
3157
|
-
});
|
|
3158
|
-
}
|
|
3159
|
-
return self;
|
|
3160
|
-
});
|
|
3161
|
-
|
|
3162
|
-
AST_Unary.DEFMETHOD("lift_sequences", function(compressor){
|
|
3163
|
-
if (compressor.option("sequences")) {
|
|
3164
|
-
if (this.expression instanceof AST_Seq) {
|
|
3165
|
-
var seq = this.expression;
|
|
3166
|
-
var x = seq.to_array();
|
|
3167
|
-
var e = this.clone();
|
|
3168
|
-
e.expression = x.pop();
|
|
3169
|
-
x.push(e);
|
|
3170
|
-
seq = AST_Seq.from_array(x).transform(compressor);
|
|
3171
|
-
return seq;
|
|
3172
|
-
}
|
|
3173
|
-
}
|
|
3174
|
-
return this;
|
|
3175
|
-
});
|
|
3176
|
-
|
|
3177
|
-
OPT(AST_UnaryPostfix, function(self, compressor){
|
|
3178
|
-
return self.lift_sequences(compressor);
|
|
3179
|
-
});
|
|
3180
|
-
|
|
3181
|
-
OPT(AST_UnaryPrefix, function(self, compressor){
|
|
3182
|
-
var e = self.expression;
|
|
3183
|
-
if (self.operator == "delete"
|
|
3184
|
-
&& !(e instanceof AST_SymbolRef
|
|
3185
|
-
|| e instanceof AST_PropAccess
|
|
3186
|
-
|| e instanceof AST_NaN
|
|
3187
|
-
|| e instanceof AST_Infinity
|
|
3188
|
-
|| e instanceof AST_Undefined)) {
|
|
3189
|
-
if (e instanceof AST_Seq) {
|
|
3190
|
-
e = e.to_array();
|
|
3191
|
-
e.push(make_node(AST_True, self));
|
|
3192
|
-
return AST_Seq.from_array(e).optimize(compressor);
|
|
3193
|
-
}
|
|
3194
|
-
return make_node(AST_Seq, self, {
|
|
3195
|
-
car: e,
|
|
3196
|
-
cdr: make_node(AST_True, self)
|
|
3197
|
-
}).optimize(compressor);
|
|
3198
|
-
}
|
|
3199
|
-
var seq = self.lift_sequences(compressor);
|
|
3200
|
-
if (seq !== self) {
|
|
3201
|
-
return seq;
|
|
3202
|
-
}
|
|
3203
|
-
if (compressor.option("side_effects") && self.operator == "void") {
|
|
3204
|
-
e = e.drop_side_effect_free(compressor);
|
|
3205
|
-
if (e) {
|
|
3206
|
-
self.expression = e;
|
|
3207
|
-
return self;
|
|
3208
|
-
} else {
|
|
3209
|
-
return make_node(AST_Undefined, self).optimize(compressor);
|
|
3210
|
-
}
|
|
3211
|
-
}
|
|
3212
|
-
if (compressor.option("booleans") && compressor.in_boolean_context()) {
|
|
3213
|
-
switch (self.operator) {
|
|
3214
|
-
case "!":
|
|
3215
|
-
if (e instanceof AST_UnaryPrefix && e.operator == "!") {
|
|
3216
|
-
// !!foo ==> foo, if we're in boolean context
|
|
3217
|
-
return e.expression;
|
|
3218
|
-
}
|
|
3219
|
-
if (e instanceof AST_Binary) {
|
|
3220
|
-
self = best_of(compressor, self, e.negate(compressor, first_in_statement(compressor)));
|
|
3221
|
-
}
|
|
3222
|
-
break;
|
|
3223
|
-
case "typeof":
|
|
3224
|
-
// typeof always returns a non-empty string, thus it's
|
|
3225
|
-
// always true in booleans
|
|
3226
|
-
compressor.warn("Boolean expression always true [{file}:{line},{col}]", self.start);
|
|
3227
|
-
return (e instanceof AST_SymbolRef ? make_node(AST_True, self) : make_node(AST_Seq, self, {
|
|
3228
|
-
car: e,
|
|
3229
|
-
cdr: make_node(AST_True, self)
|
|
3230
|
-
})).optimize(compressor);
|
|
3231
|
-
}
|
|
3232
|
-
}
|
|
3233
|
-
if (self.operator == "-" && e instanceof AST_Infinity) {
|
|
3234
|
-
e = e.transform(compressor);
|
|
3235
|
-
}
|
|
3236
|
-
if (e instanceof AST_Binary
|
|
3237
|
-
&& (self.operator == "+" || self.operator == "-")
|
|
3238
|
-
&& (e.operator == "*" || e.operator == "/" || e.operator == "%")) {
|
|
3239
|
-
return make_node(AST_Binary, self, {
|
|
3240
|
-
operator: e.operator,
|
|
3241
|
-
left: make_node(AST_UnaryPrefix, e.left, {
|
|
3242
|
-
operator: self.operator,
|
|
3243
|
-
expression: e.left
|
|
3244
|
-
}),
|
|
3245
|
-
right: e.right
|
|
3246
|
-
});
|
|
3247
|
-
}
|
|
3248
|
-
// avoids infinite recursion of numerals
|
|
3249
|
-
if (self.operator != "-"
|
|
3250
|
-
|| !(e instanceof AST_Number || e instanceof AST_Infinity)) {
|
|
3251
|
-
var ev = self.evaluate(compressor);
|
|
3252
|
-
if (ev !== self) {
|
|
3253
|
-
ev = make_node_from_constant(ev, self).optimize(compressor);
|
|
3254
|
-
return best_of(compressor, ev, self);
|
|
3255
|
-
}
|
|
3256
|
-
}
|
|
3257
|
-
return self;
|
|
3258
|
-
});
|
|
3259
|
-
|
|
3260
|
-
AST_Binary.DEFMETHOD("lift_sequences", function(compressor){
|
|
3261
|
-
if (compressor.option("sequences")) {
|
|
3262
|
-
if (this.left instanceof AST_Seq) {
|
|
3263
|
-
var seq = this.left;
|
|
3264
|
-
var x = seq.to_array();
|
|
3265
|
-
var e = this.clone();
|
|
3266
|
-
e.left = x.pop();
|
|
3267
|
-
x.push(e);
|
|
3268
|
-
return AST_Seq.from_array(x).optimize(compressor);
|
|
3269
|
-
}
|
|
3270
|
-
if (this.right instanceof AST_Seq && !this.left.has_side_effects(compressor)) {
|
|
3271
|
-
var assign = this.operator == "=" && this.left instanceof AST_SymbolRef;
|
|
3272
|
-
var root = this.right.clone();
|
|
3273
|
-
var cursor, seq = root;
|
|
3274
|
-
while (assign || !seq.car.has_side_effects(compressor)) {
|
|
3275
|
-
cursor = seq;
|
|
3276
|
-
if (seq.cdr instanceof AST_Seq) {
|
|
3277
|
-
seq = seq.cdr = seq.cdr.clone();
|
|
3278
|
-
} else break;
|
|
3279
|
-
}
|
|
3280
|
-
if (cursor) {
|
|
3281
|
-
var e = this.clone();
|
|
3282
|
-
e.right = cursor.cdr;
|
|
3283
|
-
cursor.cdr = e;
|
|
3284
|
-
return root.optimize(compressor);
|
|
3285
|
-
}
|
|
3286
|
-
}
|
|
3287
|
-
}
|
|
3288
|
-
return this;
|
|
3289
|
-
});
|
|
3290
|
-
|
|
3291
|
-
var commutativeOperators = makePredicate("== === != !== * & | ^");
|
|
3292
|
-
|
|
3293
|
-
OPT(AST_Binary, function(self, compressor){
|
|
3294
|
-
function reversible() {
|
|
3295
|
-
return self.left.is_constant()
|
|
3296
|
-
|| self.right.is_constant()
|
|
3297
|
-
|| !self.left.has_side_effects(compressor)
|
|
3298
|
-
&& !self.right.has_side_effects(compressor);
|
|
3299
|
-
}
|
|
3300
|
-
function reverse(op) {
|
|
3301
|
-
if (reversible()) {
|
|
3302
|
-
if (op) self.operator = op;
|
|
3303
|
-
var tmp = self.left;
|
|
3304
|
-
self.left = self.right;
|
|
3305
|
-
self.right = tmp;
|
|
3306
|
-
}
|
|
3307
|
-
}
|
|
3308
|
-
if (commutativeOperators(self.operator)) {
|
|
3309
|
-
if (self.right.is_constant()
|
|
3310
|
-
&& !self.left.is_constant()) {
|
|
3311
|
-
// if right is a constant, whatever side effects the
|
|
3312
|
-
// left side might have could not influence the
|
|
3313
|
-
// result. hence, force switch.
|
|
3314
|
-
|
|
3315
|
-
if (!(self.left instanceof AST_Binary
|
|
3316
|
-
&& PRECEDENCE[self.left.operator] >= PRECEDENCE[self.operator])) {
|
|
3317
|
-
reverse();
|
|
3318
|
-
}
|
|
3319
|
-
}
|
|
3320
|
-
}
|
|
3321
|
-
self = self.lift_sequences(compressor);
|
|
3322
|
-
if (compressor.option("comparisons")) switch (self.operator) {
|
|
3323
|
-
case "===":
|
|
3324
|
-
case "!==":
|
|
3325
|
-
if ((self.left.is_string(compressor) && self.right.is_string(compressor)) ||
|
|
3326
|
-
(self.left.is_number(compressor) && self.right.is_number(compressor)) ||
|
|
3327
|
-
(self.left.is_boolean() && self.right.is_boolean())) {
|
|
3328
|
-
self.operator = self.operator.substr(0, 2);
|
|
3329
|
-
}
|
|
3330
|
-
// XXX: intentionally falling down to the next case
|
|
3331
|
-
case "==":
|
|
3332
|
-
case "!=":
|
|
3333
|
-
// "undefined" == typeof x => undefined === x
|
|
3334
|
-
if (self.left instanceof AST_String
|
|
3335
|
-
&& self.left.value == "undefined"
|
|
3336
|
-
&& self.right instanceof AST_UnaryPrefix
|
|
3337
|
-
&& self.right.operator == "typeof") {
|
|
3338
|
-
var expr = self.right.expression;
|
|
3339
|
-
if (expr instanceof AST_SymbolRef ? !expr.undeclared()
|
|
3340
|
-
: !(expr instanceof AST_PropAccess) || compressor.option("screw_ie8")) {
|
|
3341
|
-
self.right = expr;
|
|
3342
|
-
self.left = make_node(AST_Undefined, self.left).optimize(compressor);
|
|
3343
|
-
if (self.operator.length == 2) self.operator += "=";
|
|
3344
|
-
}
|
|
3345
|
-
}
|
|
3346
|
-
break;
|
|
3347
|
-
}
|
|
3348
|
-
if (compressor.option("booleans") && self.operator == "+" && compressor.in_boolean_context()) {
|
|
3349
|
-
var ll = self.left.evaluate(compressor);
|
|
3350
|
-
var rr = self.right.evaluate(compressor);
|
|
3351
|
-
if (ll && typeof ll == "string") {
|
|
3352
|
-
compressor.warn("+ in boolean context always true [{file}:{line},{col}]", self.start);
|
|
3353
|
-
return make_node(AST_Seq, self, {
|
|
3354
|
-
car: self.right,
|
|
3355
|
-
cdr: make_node(AST_True, self)
|
|
3356
|
-
}).optimize(compressor);
|
|
3357
|
-
}
|
|
3358
|
-
if (rr && typeof rr == "string") {
|
|
3359
|
-
compressor.warn("+ in boolean context always true [{file}:{line},{col}]", self.start);
|
|
3360
|
-
return make_node(AST_Seq, self, {
|
|
3361
|
-
car: self.left,
|
|
3362
|
-
cdr: make_node(AST_True, self)
|
|
3363
|
-
}).optimize(compressor);
|
|
3364
|
-
}
|
|
3365
|
-
}
|
|
3366
|
-
if (compressor.option("comparisons") && self.is_boolean()) {
|
|
3367
|
-
if (!(compressor.parent() instanceof AST_Binary)
|
|
3368
|
-
|| compressor.parent() instanceof AST_Assign) {
|
|
3369
|
-
var negated = make_node(AST_UnaryPrefix, self, {
|
|
3370
|
-
operator: "!",
|
|
3371
|
-
expression: self.negate(compressor, first_in_statement(compressor))
|
|
3372
|
-
});
|
|
3373
|
-
self = best_of(compressor, self, negated);
|
|
3374
|
-
}
|
|
3375
|
-
if (compressor.option("unsafe_comps")) {
|
|
3376
|
-
switch (self.operator) {
|
|
3377
|
-
case "<": reverse(">"); break;
|
|
3378
|
-
case "<=": reverse(">="); break;
|
|
3379
|
-
}
|
|
3380
|
-
}
|
|
3381
|
-
}
|
|
3382
|
-
if (self.operator == "+") {
|
|
3383
|
-
if (self.right instanceof AST_String
|
|
3384
|
-
&& self.right.getValue() == ""
|
|
3385
|
-
&& self.left.is_string(compressor)) {
|
|
3386
|
-
return self.left;
|
|
3387
|
-
}
|
|
3388
|
-
if (self.left instanceof AST_String
|
|
3389
|
-
&& self.left.getValue() == ""
|
|
3390
|
-
&& self.right.is_string(compressor)) {
|
|
3391
|
-
return self.right;
|
|
3392
|
-
}
|
|
3393
|
-
if (self.left instanceof AST_Binary
|
|
3394
|
-
&& self.left.operator == "+"
|
|
3395
|
-
&& self.left.left instanceof AST_String
|
|
3396
|
-
&& self.left.left.getValue() == ""
|
|
3397
|
-
&& self.right.is_string(compressor)) {
|
|
3398
|
-
self.left = self.left.right;
|
|
3399
|
-
return self.transform(compressor);
|
|
3400
|
-
}
|
|
3401
|
-
}
|
|
3402
|
-
if (compressor.option("evaluate")) {
|
|
3403
|
-
switch (self.operator) {
|
|
3404
|
-
case "&&":
|
|
3405
|
-
var ll = self.left.evaluate(compressor);
|
|
3406
|
-
if (!ll) {
|
|
3407
|
-
compressor.warn("Condition left of && always false [{file}:{line},{col}]", self.start);
|
|
3408
|
-
return maintain_this_binding(compressor.parent(), self, self.left).optimize(compressor);
|
|
3409
|
-
} else if (ll !== self.left) {
|
|
3410
|
-
compressor.warn("Condition left of && always true [{file}:{line},{col}]", self.start);
|
|
3411
|
-
return maintain_this_binding(compressor.parent(), self, self.right).optimize(compressor);
|
|
3412
|
-
}
|
|
3413
|
-
if (compressor.option("booleans") && compressor.in_boolean_context()) {
|
|
3414
|
-
var rr = self.right.evaluate(compressor);
|
|
3415
|
-
if (!rr) {
|
|
3416
|
-
compressor.warn("Boolean && always false [{file}:{line},{col}]", self.start);
|
|
3417
|
-
return make_node(AST_Seq, self, {
|
|
3418
|
-
car: self.left,
|
|
3419
|
-
cdr: make_node(AST_False, self)
|
|
3420
|
-
}).optimize(compressor);
|
|
3421
|
-
} else if (rr !== self.right) {
|
|
3422
|
-
compressor.warn("Dropping side-effect-free && in boolean context [{file}:{line},{col}]", self.start);
|
|
3423
|
-
return self.left.optimize(compressor);
|
|
3424
|
-
}
|
|
3425
|
-
}
|
|
3426
|
-
break;
|
|
3427
|
-
case "||":
|
|
3428
|
-
var ll = self.left.evaluate(compressor);
|
|
3429
|
-
if (!ll) {
|
|
3430
|
-
compressor.warn("Condition left of || always false [{file}:{line},{col}]", self.start);
|
|
3431
|
-
return maintain_this_binding(compressor.parent(), self, self.right).optimize(compressor);
|
|
3432
|
-
} else if (ll !== self.left) {
|
|
3433
|
-
compressor.warn("Condition left of || always true [{file}:{line},{col}]", self.start);
|
|
3434
|
-
return maintain_this_binding(compressor.parent(), self, self.left).optimize(compressor);
|
|
3435
|
-
}
|
|
3436
|
-
if (compressor.option("booleans") && compressor.in_boolean_context()) {
|
|
3437
|
-
var rr = self.right.evaluate(compressor);
|
|
3438
|
-
if (!rr) {
|
|
3439
|
-
compressor.warn("Dropping side-effect-free || in boolean context [{file}:{line},{col}]", self.start);
|
|
3440
|
-
return self.left.optimize(compressor);
|
|
3441
|
-
} else if (rr !== self.right) {
|
|
3442
|
-
compressor.warn("Boolean || always true [{file}:{line},{col}]", self.start);
|
|
3443
|
-
return make_node(AST_Seq, self, {
|
|
3444
|
-
car: self.left,
|
|
3445
|
-
cdr: make_node(AST_True, self)
|
|
3446
|
-
}).optimize(compressor);
|
|
3447
|
-
}
|
|
3448
|
-
}
|
|
3449
|
-
break;
|
|
3450
|
-
}
|
|
3451
|
-
var associative = true;
|
|
3452
|
-
switch (self.operator) {
|
|
3453
|
-
case "+":
|
|
3454
|
-
// "foo" + ("bar" + x) => "foobar" + x
|
|
3455
|
-
if (self.left instanceof AST_Constant
|
|
3456
|
-
&& self.right instanceof AST_Binary
|
|
3457
|
-
&& self.right.operator == "+"
|
|
3458
|
-
&& self.right.left instanceof AST_Constant
|
|
3459
|
-
&& self.right.is_string(compressor)) {
|
|
3460
|
-
self = make_node(AST_Binary, self, {
|
|
3461
|
-
operator: "+",
|
|
3462
|
-
left: make_node(AST_String, self.left, {
|
|
3463
|
-
value: "" + self.left.getValue() + self.right.left.getValue(),
|
|
3464
|
-
start: self.left.start,
|
|
3465
|
-
end: self.right.left.end
|
|
3466
|
-
}),
|
|
3467
|
-
right: self.right.right
|
|
3468
|
-
});
|
|
3469
|
-
}
|
|
3470
|
-
// (x + "foo") + "bar" => x + "foobar"
|
|
3471
|
-
if (self.right instanceof AST_Constant
|
|
3472
|
-
&& self.left instanceof AST_Binary
|
|
3473
|
-
&& self.left.operator == "+"
|
|
3474
|
-
&& self.left.right instanceof AST_Constant
|
|
3475
|
-
&& self.left.is_string(compressor)) {
|
|
3476
|
-
self = make_node(AST_Binary, self, {
|
|
3477
|
-
operator: "+",
|
|
3478
|
-
left: self.left.left,
|
|
3479
|
-
right: make_node(AST_String, self.right, {
|
|
3480
|
-
value: "" + self.left.right.getValue() + self.right.getValue(),
|
|
3481
|
-
start: self.left.right.start,
|
|
3482
|
-
end: self.right.end
|
|
3483
|
-
})
|
|
3484
|
-
});
|
|
3485
|
-
}
|
|
3486
|
-
// (x + "foo") + ("bar" + y) => (x + "foobar") + y
|
|
3487
|
-
if (self.left instanceof AST_Binary
|
|
3488
|
-
&& self.left.operator == "+"
|
|
3489
|
-
&& self.left.is_string(compressor)
|
|
3490
|
-
&& self.left.right instanceof AST_Constant
|
|
3491
|
-
&& self.right instanceof AST_Binary
|
|
3492
|
-
&& self.right.operator == "+"
|
|
3493
|
-
&& self.right.left instanceof AST_Constant
|
|
3494
|
-
&& self.right.is_string(compressor)) {
|
|
3495
|
-
self = make_node(AST_Binary, self, {
|
|
3496
|
-
operator: "+",
|
|
3497
|
-
left: make_node(AST_Binary, self.left, {
|
|
3498
|
-
operator: "+",
|
|
3499
|
-
left: self.left.left,
|
|
3500
|
-
right: make_node(AST_String, self.left.right, {
|
|
3501
|
-
value: "" + self.left.right.getValue() + self.right.left.getValue(),
|
|
3502
|
-
start: self.left.right.start,
|
|
3503
|
-
end: self.right.left.end
|
|
3504
|
-
})
|
|
3505
|
-
}),
|
|
3506
|
-
right: self.right.right
|
|
3507
|
-
});
|
|
3508
|
-
}
|
|
3509
|
-
// a + -b => a - b
|
|
3510
|
-
if (self.right instanceof AST_UnaryPrefix
|
|
3511
|
-
&& self.right.operator == "-"
|
|
3512
|
-
&& self.left.is_number(compressor)) {
|
|
3513
|
-
self = make_node(AST_Binary, self, {
|
|
3514
|
-
operator: "-",
|
|
3515
|
-
left: self.left,
|
|
3516
|
-
right: self.right.expression
|
|
3517
|
-
});
|
|
3518
|
-
break;
|
|
3519
|
-
}
|
|
3520
|
-
// -a + b => b - a
|
|
3521
|
-
if (self.left instanceof AST_UnaryPrefix
|
|
3522
|
-
&& self.left.operator == "-"
|
|
3523
|
-
&& reversible()
|
|
3524
|
-
&& self.right.is_number(compressor)) {
|
|
3525
|
-
self = make_node(AST_Binary, self, {
|
|
3526
|
-
operator: "-",
|
|
3527
|
-
left: self.right,
|
|
3528
|
-
right: self.left.expression
|
|
3529
|
-
});
|
|
3530
|
-
break;
|
|
3531
|
-
}
|
|
3532
|
-
case "*":
|
|
3533
|
-
associative = compressor.option("unsafe_math");
|
|
3534
|
-
case "&":
|
|
3535
|
-
case "|":
|
|
3536
|
-
case "^":
|
|
3537
|
-
// a + +b => +b + a
|
|
3538
|
-
if (self.left.is_number(compressor)
|
|
3539
|
-
&& self.right.is_number(compressor)
|
|
3540
|
-
&& reversible()
|
|
3541
|
-
&& !(self.left instanceof AST_Binary
|
|
3542
|
-
&& self.left.operator != self.operator
|
|
3543
|
-
&& PRECEDENCE[self.left.operator] >= PRECEDENCE[self.operator])) {
|
|
3544
|
-
var reversed = make_node(AST_Binary, self, {
|
|
3545
|
-
operator: self.operator,
|
|
3546
|
-
left: self.right,
|
|
3547
|
-
right: self.left
|
|
3548
|
-
});
|
|
3549
|
-
if (self.right instanceof AST_Constant
|
|
3550
|
-
&& !(self.left instanceof AST_Constant)) {
|
|
3551
|
-
self = best_of(compressor, reversed, self);
|
|
3552
|
-
} else {
|
|
3553
|
-
self = best_of(compressor, self, reversed);
|
|
3554
|
-
}
|
|
3555
|
-
}
|
|
3556
|
-
if (associative && self.is_number(compressor)) {
|
|
3557
|
-
// a + (b + c) => (a + b) + c
|
|
3558
|
-
if (self.right instanceof AST_Binary
|
|
3559
|
-
&& self.right.operator == self.operator) {
|
|
3560
|
-
self = make_node(AST_Binary, self, {
|
|
3561
|
-
operator: self.operator,
|
|
3562
|
-
left: make_node(AST_Binary, self.left, {
|
|
3563
|
-
operator: self.operator,
|
|
3564
|
-
left: self.left,
|
|
3565
|
-
right: self.right.left,
|
|
3566
|
-
start: self.left.start,
|
|
3567
|
-
end: self.right.left.end
|
|
3568
|
-
}),
|
|
3569
|
-
right: self.right.right
|
|
3570
|
-
});
|
|
3571
|
-
}
|
|
3572
|
-
// (n + 2) + 3 => 5 + n
|
|
3573
|
-
// (2 * n) * 3 => 6 + n
|
|
3574
|
-
if (self.right instanceof AST_Constant
|
|
3575
|
-
&& self.left instanceof AST_Binary
|
|
3576
|
-
&& self.left.operator == self.operator) {
|
|
3577
|
-
if (self.left.left instanceof AST_Constant) {
|
|
3578
|
-
self = make_node(AST_Binary, self, {
|
|
3579
|
-
operator: self.operator,
|
|
3580
|
-
left: make_node(AST_Binary, self.left, {
|
|
3581
|
-
operator: self.operator,
|
|
3582
|
-
left: self.left.left,
|
|
3583
|
-
right: self.right,
|
|
3584
|
-
start: self.left.left.start,
|
|
3585
|
-
end: self.right.end
|
|
3586
|
-
}),
|
|
3587
|
-
right: self.left.right
|
|
3588
|
-
});
|
|
3589
|
-
} else if (self.left.right instanceof AST_Constant) {
|
|
3590
|
-
self = make_node(AST_Binary, self, {
|
|
3591
|
-
operator: self.operator,
|
|
3592
|
-
left: make_node(AST_Binary, self.left, {
|
|
3593
|
-
operator: self.operator,
|
|
3594
|
-
left: self.left.right,
|
|
3595
|
-
right: self.right,
|
|
3596
|
-
start: self.left.right.start,
|
|
3597
|
-
end: self.right.end
|
|
3598
|
-
}),
|
|
3599
|
-
right: self.left.left
|
|
3600
|
-
});
|
|
3601
|
-
}
|
|
3602
|
-
}
|
|
3603
|
-
// (a | 1) | (2 | d) => (3 | a) | b
|
|
3604
|
-
if (self.left instanceof AST_Binary
|
|
3605
|
-
&& self.left.operator == self.operator
|
|
3606
|
-
&& self.left.right instanceof AST_Constant
|
|
3607
|
-
&& self.right instanceof AST_Binary
|
|
3608
|
-
&& self.right.operator == self.operator
|
|
3609
|
-
&& self.right.left instanceof AST_Constant) {
|
|
3610
|
-
self = make_node(AST_Binary, self, {
|
|
3611
|
-
operator: self.operator,
|
|
3612
|
-
left: make_node(AST_Binary, self.left, {
|
|
3613
|
-
operator: self.operator,
|
|
3614
|
-
left: make_node(AST_Binary, self.left.left, {
|
|
3615
|
-
operator: self.operator,
|
|
3616
|
-
left: self.left.right,
|
|
3617
|
-
right: self.right.left,
|
|
3618
|
-
start: self.left.right.start,
|
|
3619
|
-
end: self.right.left.end
|
|
3620
|
-
}),
|
|
3621
|
-
right: self.left.left
|
|
3622
|
-
}),
|
|
3623
|
-
right: self.right.right
|
|
3624
|
-
});
|
|
3625
|
-
}
|
|
3626
|
-
}
|
|
3627
|
-
}
|
|
3628
|
-
}
|
|
3629
|
-
// x && (y && z) ==> x && y && z
|
|
3630
|
-
// x || (y || z) ==> x || y || z
|
|
3631
|
-
// x + ("y" + z) ==> x + "y" + z
|
|
3632
|
-
// "x" + (y + "z")==> "x" + y + "z"
|
|
3633
|
-
if (self.right instanceof AST_Binary
|
|
3634
|
-
&& self.right.operator == self.operator
|
|
3635
|
-
&& (self.operator == "&&"
|
|
3636
|
-
|| self.operator == "||"
|
|
3637
|
-
|| (self.operator == "+"
|
|
3638
|
-
&& (self.right.left.is_string(compressor)
|
|
3639
|
-
|| (self.left.is_string(compressor)
|
|
3640
|
-
&& self.right.right.is_string(compressor))))))
|
|
3641
|
-
{
|
|
3642
|
-
self.left = make_node(AST_Binary, self.left, {
|
|
3643
|
-
operator : self.operator,
|
|
3644
|
-
left : self.left,
|
|
3645
|
-
right : self.right.left
|
|
3646
|
-
});
|
|
3647
|
-
self.right = self.right.right;
|
|
3648
|
-
return self.transform(compressor);
|
|
3649
|
-
}
|
|
3650
|
-
var ev = self.evaluate(compressor);
|
|
3651
|
-
if (ev !== self) {
|
|
3652
|
-
ev = make_node_from_constant(ev, self).optimize(compressor);
|
|
3653
|
-
return best_of(compressor, ev, self);
|
|
3654
|
-
}
|
|
3655
|
-
return self;
|
|
3656
|
-
});
|
|
3657
|
-
|
|
3658
|
-
OPT(AST_SymbolRef, function(self, compressor){
|
|
3659
|
-
var def = self.resolve_defines(compressor);
|
|
3660
|
-
if (def) {
|
|
3661
|
-
return def.optimize(compressor);
|
|
3662
|
-
}
|
|
3663
|
-
// testing against !self.scope.uses_with first is an optimization
|
|
3664
|
-
if (compressor.option("screw_ie8")
|
|
3665
|
-
&& self.undeclared()
|
|
3666
|
-
&& (!self.scope.uses_with || !compressor.find_parent(AST_With))) {
|
|
3667
|
-
switch (self.name) {
|
|
3668
|
-
case "undefined":
|
|
3669
|
-
return make_node(AST_Undefined, self).optimize(compressor);
|
|
3670
|
-
case "NaN":
|
|
3671
|
-
return make_node(AST_NaN, self).optimize(compressor);
|
|
3672
|
-
case "Infinity":
|
|
3673
|
-
return make_node(AST_Infinity, self).optimize(compressor);
|
|
3674
|
-
}
|
|
3675
|
-
}
|
|
3676
|
-
if (compressor.option("evaluate")
|
|
3677
|
-
&& compressor.option("reduce_vars")
|
|
3678
|
-
&& is_lhs(self, compressor.parent()) !== self) {
|
|
3679
|
-
var d = self.definition();
|
|
3680
|
-
var fixed = self.fixed_value();
|
|
3681
|
-
if (fixed) {
|
|
3682
|
-
if (d.should_replace === undefined) {
|
|
3683
|
-
var init = fixed.evaluate(compressor);
|
|
3684
|
-
if (init !== fixed && (compressor.option("unsafe_regexp") || !(init instanceof RegExp))) {
|
|
3685
|
-
init = make_node_from_constant(init, fixed);
|
|
3686
|
-
var value = init.optimize(compressor).print_to_string().length;
|
|
3687
|
-
var fn;
|
|
3688
|
-
if (has_symbol_ref(fixed)) {
|
|
3689
|
-
fn = function() {
|
|
3690
|
-
var result = init.optimize(compressor);
|
|
3691
|
-
return result === init ? result.clone(true) : result;
|
|
3692
|
-
};
|
|
3693
|
-
} else {
|
|
3694
|
-
value = Math.min(value, fixed.print_to_string().length);
|
|
3695
|
-
fn = function() {
|
|
3696
|
-
var result = best_of_expression(init.optimize(compressor), fixed);
|
|
3697
|
-
return result === init || result === fixed ? result.clone(true) : result;
|
|
3698
|
-
};
|
|
3699
|
-
}
|
|
3700
|
-
var name = d.name.length;
|
|
3701
|
-
var overhead = 0;
|
|
3702
|
-
if (compressor.option("unused") && (!d.global || compressor.option("toplevel"))) {
|
|
3703
|
-
overhead = (name + 2 + value) / d.references.length;
|
|
3704
|
-
}
|
|
3705
|
-
d.should_replace = value <= name + overhead ? fn : false;
|
|
3706
|
-
} else {
|
|
3707
|
-
d.should_replace = false;
|
|
3708
|
-
}
|
|
3709
|
-
}
|
|
3710
|
-
if (d.should_replace) {
|
|
3711
|
-
return d.should_replace();
|
|
3712
|
-
}
|
|
3713
|
-
}
|
|
3714
|
-
}
|
|
3715
|
-
return self;
|
|
3716
|
-
|
|
3717
|
-
function has_symbol_ref(value) {
|
|
3718
|
-
var found;
|
|
3719
|
-
value.walk(new TreeWalker(function(node) {
|
|
3720
|
-
if (node instanceof AST_SymbolRef) found = true;
|
|
3721
|
-
if (found) return true;
|
|
3722
|
-
}));
|
|
3723
|
-
return found;
|
|
3724
|
-
}
|
|
3725
|
-
});
|
|
3726
|
-
|
|
3727
|
-
function is_atomic(lhs, self) {
|
|
3728
|
-
return lhs instanceof AST_SymbolRef || lhs.TYPE === self.TYPE;
|
|
3729
|
-
}
|
|
3730
|
-
|
|
3731
|
-
OPT(AST_Undefined, function(self, compressor){
|
|
3732
|
-
if (compressor.option("unsafe")) {
|
|
3733
|
-
var undef = find_variable(compressor, "undefined");
|
|
3734
|
-
if (undef) {
|
|
3735
|
-
var ref = make_node(AST_SymbolRef, self, {
|
|
3736
|
-
name : "undefined",
|
|
3737
|
-
scope : undef.scope,
|
|
3738
|
-
thedef : undef
|
|
3739
|
-
});
|
|
3740
|
-
ref.is_undefined = true;
|
|
3741
|
-
return ref;
|
|
3742
|
-
}
|
|
3743
|
-
}
|
|
3744
|
-
var lhs = is_lhs(compressor.self(), compressor.parent());
|
|
3745
|
-
if (lhs && is_atomic(lhs, self)) return self;
|
|
3746
|
-
return make_node(AST_UnaryPrefix, self, {
|
|
3747
|
-
operator: "void",
|
|
3748
|
-
expression: make_node(AST_Number, self, {
|
|
3749
|
-
value: 0
|
|
3750
|
-
})
|
|
3751
|
-
});
|
|
3752
|
-
});
|
|
3753
|
-
|
|
3754
|
-
OPT(AST_Infinity, function(self, compressor){
|
|
3755
|
-
var lhs = is_lhs(compressor.self(), compressor.parent());
|
|
3756
|
-
if (lhs && is_atomic(lhs, self)) return self;
|
|
3757
|
-
if (compressor.option("keep_infinity")
|
|
3758
|
-
&& !(lhs && !is_atomic(lhs, self))
|
|
3759
|
-
&& !find_variable(compressor, "Infinity"))
|
|
3760
|
-
return self;
|
|
3761
|
-
return make_node(AST_Binary, self, {
|
|
3762
|
-
operator: "/",
|
|
3763
|
-
left: make_node(AST_Number, self, {
|
|
3764
|
-
value: 1
|
|
3765
|
-
}),
|
|
3766
|
-
right: make_node(AST_Number, self, {
|
|
3767
|
-
value: 0
|
|
3768
|
-
})
|
|
3769
|
-
});
|
|
3770
|
-
});
|
|
3771
|
-
|
|
3772
|
-
OPT(AST_NaN, function(self, compressor){
|
|
3773
|
-
var lhs = is_lhs(compressor.self(), compressor.parent());
|
|
3774
|
-
if (lhs && !is_atomic(lhs, self)
|
|
3775
|
-
|| find_variable(compressor, "NaN")) {
|
|
3776
|
-
return make_node(AST_Binary, self, {
|
|
3777
|
-
operator: "/",
|
|
3778
|
-
left: make_node(AST_Number, self, {
|
|
3779
|
-
value: 0
|
|
3780
|
-
}),
|
|
3781
|
-
right: make_node(AST_Number, self, {
|
|
3782
|
-
value: 0
|
|
3783
|
-
})
|
|
3784
|
-
});
|
|
3785
|
-
}
|
|
3786
|
-
return self;
|
|
3787
|
-
});
|
|
3788
|
-
|
|
3789
|
-
var ASSIGN_OPS = [ '+', '-', '/', '*', '%', '>>', '<<', '>>>', '|', '^', '&' ];
|
|
3790
|
-
var ASSIGN_OPS_COMMUTATIVE = [ '*', '|', '^', '&' ];
|
|
3791
|
-
OPT(AST_Assign, function(self, compressor){
|
|
3792
|
-
self = self.lift_sequences(compressor);
|
|
3793
|
-
if (self.operator == "=" && self.left instanceof AST_SymbolRef && self.right instanceof AST_Binary) {
|
|
3794
|
-
// x = expr1 OP expr2
|
|
3795
|
-
if (self.right.left instanceof AST_SymbolRef
|
|
3796
|
-
&& self.right.left.name == self.left.name
|
|
3797
|
-
&& member(self.right.operator, ASSIGN_OPS)) {
|
|
3798
|
-
// x = x - 2 ---> x -= 2
|
|
3799
|
-
self.operator = self.right.operator + "=";
|
|
3800
|
-
self.right = self.right.right;
|
|
3801
|
-
}
|
|
3802
|
-
else if (self.right.right instanceof AST_SymbolRef
|
|
3803
|
-
&& self.right.right.name == self.left.name
|
|
3804
|
-
&& member(self.right.operator, ASSIGN_OPS_COMMUTATIVE)
|
|
3805
|
-
&& !self.right.left.has_side_effects(compressor)) {
|
|
3806
|
-
// x = 2 & x ---> x &= 2
|
|
3807
|
-
self.operator = self.right.operator + "=";
|
|
3808
|
-
self.right = self.right.left;
|
|
3809
|
-
}
|
|
3810
|
-
}
|
|
3811
|
-
return self;
|
|
3812
|
-
});
|
|
3813
|
-
|
|
3814
|
-
OPT(AST_Conditional, function(self, compressor){
|
|
3815
|
-
if (!compressor.option("conditionals")) return self;
|
|
3816
|
-
if (self.condition instanceof AST_Seq) {
|
|
3817
|
-
var car = self.condition.car;
|
|
3818
|
-
self.condition = self.condition.cdr;
|
|
3819
|
-
return AST_Seq.cons(car, self);
|
|
3820
|
-
}
|
|
3821
|
-
var cond = self.condition.evaluate(compressor);
|
|
3822
|
-
if (cond !== self.condition) {
|
|
3823
|
-
if (cond) {
|
|
3824
|
-
compressor.warn("Condition always true [{file}:{line},{col}]", self.start);
|
|
3825
|
-
return maintain_this_binding(compressor.parent(), self, self.consequent);
|
|
3826
|
-
} else {
|
|
3827
|
-
compressor.warn("Condition always false [{file}:{line},{col}]", self.start);
|
|
3828
|
-
return maintain_this_binding(compressor.parent(), self, self.alternative);
|
|
3829
|
-
}
|
|
3830
|
-
}
|
|
3831
|
-
var negated = cond.negate(compressor, first_in_statement(compressor));
|
|
3832
|
-
if (best_of(compressor, cond, negated) === negated) {
|
|
3833
|
-
self = make_node(AST_Conditional, self, {
|
|
3834
|
-
condition: negated,
|
|
3835
|
-
consequent: self.alternative,
|
|
3836
|
-
alternative: self.consequent
|
|
3837
|
-
});
|
|
3838
|
-
}
|
|
3839
|
-
var condition = self.condition;
|
|
3840
|
-
var consequent = self.consequent;
|
|
3841
|
-
var alternative = self.alternative;
|
|
3842
|
-
// x?x:y --> x||y
|
|
3843
|
-
if (condition instanceof AST_SymbolRef
|
|
3844
|
-
&& consequent instanceof AST_SymbolRef
|
|
3845
|
-
&& condition.definition() === consequent.definition()) {
|
|
3846
|
-
return make_node(AST_Binary, self, {
|
|
3847
|
-
operator: "||",
|
|
3848
|
-
left: condition,
|
|
3849
|
-
right: alternative
|
|
3850
|
-
});
|
|
3851
|
-
}
|
|
3852
|
-
// if (foo) exp = something; else exp = something_else;
|
|
3853
|
-
// |
|
|
3854
|
-
// v
|
|
3855
|
-
// exp = foo ? something : something_else;
|
|
3856
|
-
if (consequent instanceof AST_Assign
|
|
3857
|
-
&& alternative instanceof AST_Assign
|
|
3858
|
-
&& consequent.operator == alternative.operator
|
|
3859
|
-
&& consequent.left.equivalent_to(alternative.left)
|
|
3860
|
-
&& (!self.condition.has_side_effects(compressor)
|
|
3861
|
-
|| consequent.operator == "="
|
|
3862
|
-
&& !consequent.left.has_side_effects(compressor))) {
|
|
3863
|
-
return make_node(AST_Assign, self, {
|
|
3864
|
-
operator: consequent.operator,
|
|
3865
|
-
left: consequent.left,
|
|
3866
|
-
right: make_node(AST_Conditional, self, {
|
|
3867
|
-
condition: self.condition,
|
|
3868
|
-
consequent: consequent.right,
|
|
3869
|
-
alternative: alternative.right
|
|
3870
|
-
})
|
|
3871
|
-
});
|
|
3872
|
-
}
|
|
3873
|
-
// x ? y(a) : y(b) --> y(x ? a : b)
|
|
3874
|
-
if (consequent instanceof AST_Call
|
|
3875
|
-
&& alternative.TYPE === consequent.TYPE
|
|
3876
|
-
&& consequent.args.length == 1
|
|
3877
|
-
&& alternative.args.length == 1
|
|
3878
|
-
&& consequent.expression.equivalent_to(alternative.expression)
|
|
3879
|
-
&& !consequent.expression.has_side_effects(compressor)) {
|
|
3880
|
-
consequent.args[0] = make_node(AST_Conditional, self, {
|
|
3881
|
-
condition: self.condition,
|
|
3882
|
-
consequent: consequent.args[0],
|
|
3883
|
-
alternative: alternative.args[0]
|
|
3884
|
-
});
|
|
3885
|
-
return consequent;
|
|
3886
|
-
}
|
|
3887
|
-
// x?y?z:a:a --> x&&y?z:a
|
|
3888
|
-
if (consequent instanceof AST_Conditional
|
|
3889
|
-
&& consequent.alternative.equivalent_to(alternative)) {
|
|
3890
|
-
return make_node(AST_Conditional, self, {
|
|
3891
|
-
condition: make_node(AST_Binary, self, {
|
|
3892
|
-
left: self.condition,
|
|
3893
|
-
operator: "&&",
|
|
3894
|
-
right: consequent.condition
|
|
3895
|
-
}),
|
|
3896
|
-
consequent: consequent.consequent,
|
|
3897
|
-
alternative: alternative
|
|
3898
|
-
});
|
|
3899
|
-
}
|
|
3900
|
-
// x ? y : y --> x, y
|
|
3901
|
-
if (consequent.equivalent_to(alternative)) {
|
|
3902
|
-
return make_node(AST_Seq, self, {
|
|
3903
|
-
car: self.condition,
|
|
3904
|
-
cdr: consequent
|
|
3905
|
-
}).optimize(compressor);
|
|
3906
|
-
}
|
|
3907
|
-
|
|
3908
|
-
if (is_true(self.consequent)) {
|
|
3909
|
-
if (is_false(self.alternative)) {
|
|
3910
|
-
// c ? true : false ---> !!c
|
|
3911
|
-
return booleanize(self.condition);
|
|
3912
|
-
}
|
|
3913
|
-
// c ? true : x ---> !!c || x
|
|
3914
|
-
return make_node(AST_Binary, self, {
|
|
3915
|
-
operator: "||",
|
|
3916
|
-
left: booleanize(self.condition),
|
|
3917
|
-
right: self.alternative
|
|
3918
|
-
});
|
|
3919
|
-
}
|
|
3920
|
-
if (is_false(self.consequent)) {
|
|
3921
|
-
if (is_true(self.alternative)) {
|
|
3922
|
-
// c ? false : true ---> !c
|
|
3923
|
-
return booleanize(self.condition.negate(compressor));
|
|
3924
|
-
}
|
|
3925
|
-
// c ? false : x ---> !c && x
|
|
3926
|
-
return make_node(AST_Binary, self, {
|
|
3927
|
-
operator: "&&",
|
|
3928
|
-
left: booleanize(self.condition.negate(compressor)),
|
|
3929
|
-
right: self.alternative
|
|
3930
|
-
});
|
|
3931
|
-
}
|
|
3932
|
-
if (is_true(self.alternative)) {
|
|
3933
|
-
// c ? x : true ---> !c || x
|
|
3934
|
-
return make_node(AST_Binary, self, {
|
|
3935
|
-
operator: "||",
|
|
3936
|
-
left: booleanize(self.condition.negate(compressor)),
|
|
3937
|
-
right: self.consequent
|
|
3938
|
-
});
|
|
3939
|
-
}
|
|
3940
|
-
if (is_false(self.alternative)) {
|
|
3941
|
-
// c ? x : false ---> !!c && x
|
|
3942
|
-
return make_node(AST_Binary, self, {
|
|
3943
|
-
operator: "&&",
|
|
3944
|
-
left: booleanize(self.condition),
|
|
3945
|
-
right: self.consequent
|
|
3946
|
-
});
|
|
3947
|
-
}
|
|
3948
|
-
|
|
3949
|
-
return self;
|
|
3950
|
-
|
|
3951
|
-
function booleanize(node) {
|
|
3952
|
-
if (node.is_boolean()) return node;
|
|
3953
|
-
// !!expression
|
|
3954
|
-
return make_node(AST_UnaryPrefix, node, {
|
|
3955
|
-
operator: "!",
|
|
3956
|
-
expression: node.negate(compressor)
|
|
3957
|
-
});
|
|
3958
|
-
}
|
|
3959
|
-
|
|
3960
|
-
// AST_True or !0
|
|
3961
|
-
function is_true(node) {
|
|
3962
|
-
return node instanceof AST_True
|
|
3963
|
-
|| (node instanceof AST_UnaryPrefix
|
|
3964
|
-
&& node.operator == "!"
|
|
3965
|
-
&& node.expression instanceof AST_Constant
|
|
3966
|
-
&& !node.expression.value);
|
|
3967
|
-
}
|
|
3968
|
-
// AST_False or !1
|
|
3969
|
-
function is_false(node) {
|
|
3970
|
-
return node instanceof AST_False
|
|
3971
|
-
|| (node instanceof AST_UnaryPrefix
|
|
3972
|
-
&& node.operator == "!"
|
|
3973
|
-
&& node.expression instanceof AST_Constant
|
|
3974
|
-
&& !!node.expression.value);
|
|
3975
|
-
}
|
|
3976
|
-
});
|
|
3977
|
-
|
|
3978
|
-
OPT(AST_Boolean, function(self, compressor){
|
|
3979
|
-
if (compressor.option("booleans")) {
|
|
3980
|
-
var p = compressor.parent();
|
|
3981
|
-
if (p instanceof AST_Binary && (p.operator == "=="
|
|
3982
|
-
|| p.operator == "!=")) {
|
|
3983
|
-
compressor.warn("Non-strict equality against boolean: {operator} {value} [{file}:{line},{col}]", {
|
|
3984
|
-
operator : p.operator,
|
|
3985
|
-
value : self.value,
|
|
3986
|
-
file : p.start.file,
|
|
3987
|
-
line : p.start.line,
|
|
3988
|
-
col : p.start.col,
|
|
3989
|
-
});
|
|
3990
|
-
return make_node(AST_Number, self, {
|
|
3991
|
-
value: +self.value
|
|
3992
|
-
});
|
|
3993
|
-
}
|
|
3994
|
-
return make_node(AST_UnaryPrefix, self, {
|
|
3995
|
-
operator: "!",
|
|
3996
|
-
expression: make_node(AST_Number, self, {
|
|
3997
|
-
value: 1 - self.value
|
|
3998
|
-
})
|
|
3999
|
-
});
|
|
4000
|
-
}
|
|
4001
|
-
return self;
|
|
4002
|
-
});
|
|
4003
|
-
|
|
4004
|
-
OPT(AST_Sub, function(self, compressor){
|
|
4005
|
-
var prop = self.property;
|
|
4006
|
-
if (prop instanceof AST_String && compressor.option("properties")) {
|
|
4007
|
-
prop = prop.getValue();
|
|
4008
|
-
if (RESERVED_WORDS(prop) ? compressor.option("screw_ie8") : is_identifier_string(prop)) {
|
|
4009
|
-
return make_node(AST_Dot, self, {
|
|
4010
|
-
expression : self.expression,
|
|
4011
|
-
property : prop
|
|
4012
|
-
}).optimize(compressor);
|
|
4013
|
-
}
|
|
4014
|
-
var v = parseFloat(prop);
|
|
4015
|
-
if (!isNaN(v) && v.toString() == prop) {
|
|
4016
|
-
self.property = make_node(AST_Number, self.property, {
|
|
4017
|
-
value: v
|
|
4018
|
-
});
|
|
4019
|
-
}
|
|
4020
|
-
}
|
|
4021
|
-
var ev = self.evaluate(compressor);
|
|
4022
|
-
if (ev !== self) {
|
|
4023
|
-
ev = make_node_from_constant(ev, self).optimize(compressor);
|
|
4024
|
-
return best_of(compressor, ev, self);
|
|
4025
|
-
}
|
|
4026
|
-
return self;
|
|
4027
|
-
});
|
|
4028
|
-
|
|
4029
|
-
OPT(AST_Dot, function(self, compressor){
|
|
4030
|
-
var def = self.resolve_defines(compressor);
|
|
4031
|
-
if (def) {
|
|
4032
|
-
return def.optimize(compressor);
|
|
4033
|
-
}
|
|
4034
|
-
var prop = self.property;
|
|
4035
|
-
if (RESERVED_WORDS(prop) && !compressor.option("screw_ie8")) {
|
|
4036
|
-
return make_node(AST_Sub, self, {
|
|
4037
|
-
expression : self.expression,
|
|
4038
|
-
property : make_node(AST_String, self, {
|
|
4039
|
-
value: prop
|
|
4040
|
-
})
|
|
4041
|
-
}).optimize(compressor);
|
|
4042
|
-
}
|
|
4043
|
-
if (compressor.option("unsafe_proto")
|
|
4044
|
-
&& self.expression instanceof AST_Dot
|
|
4045
|
-
&& self.expression.property == "prototype") {
|
|
4046
|
-
var exp = self.expression.expression;
|
|
4047
|
-
if (exp instanceof AST_SymbolRef && exp.undeclared()) switch (exp.name) {
|
|
4048
|
-
case "Array":
|
|
4049
|
-
self.expression = make_node(AST_Array, self.expression, {
|
|
4050
|
-
elements: []
|
|
4051
|
-
});
|
|
4052
|
-
break;
|
|
4053
|
-
case "Object":
|
|
4054
|
-
self.expression = make_node(AST_Object, self.expression, {
|
|
4055
|
-
properties: []
|
|
4056
|
-
});
|
|
4057
|
-
break;
|
|
4058
|
-
case "String":
|
|
4059
|
-
self.expression = make_node(AST_String, self.expression, {
|
|
4060
|
-
value: ""
|
|
4061
|
-
});
|
|
4062
|
-
break;
|
|
4063
|
-
}
|
|
4064
|
-
}
|
|
4065
|
-
var ev = self.evaluate(compressor);
|
|
4066
|
-
if (ev !== self) {
|
|
4067
|
-
ev = make_node_from_constant(ev, self).optimize(compressor);
|
|
4068
|
-
return best_of(compressor, ev, self);
|
|
4069
|
-
}
|
|
4070
|
-
return self;
|
|
4071
|
-
});
|
|
4072
|
-
|
|
4073
|
-
function literals_in_boolean_context(self, compressor) {
|
|
4074
|
-
if (compressor.option("booleans") && compressor.in_boolean_context()) {
|
|
4075
|
-
return best_of(compressor, self, make_node(AST_Seq, self, {
|
|
4076
|
-
car: self,
|
|
4077
|
-
cdr: make_node(AST_True, self)
|
|
4078
|
-
}).optimize(compressor));
|
|
4079
|
-
}
|
|
4080
|
-
return self;
|
|
4081
|
-
};
|
|
4082
|
-
OPT(AST_Array, literals_in_boolean_context);
|
|
4083
|
-
OPT(AST_Object, literals_in_boolean_context);
|
|
4084
|
-
OPT(AST_RegExp, literals_in_boolean_context);
|
|
4085
|
-
|
|
4086
|
-
OPT(AST_Return, function(self, compressor){
|
|
4087
|
-
if (self.value && is_undefined(self.value, compressor)) {
|
|
4088
|
-
self.value = null;
|
|
4089
|
-
}
|
|
4090
|
-
return self;
|
|
4091
|
-
});
|
|
4092
|
-
|
|
4093
|
-
OPT(AST_VarDef, function(self, compressor){
|
|
4094
|
-
var defines = compressor.option("global_defs");
|
|
4095
|
-
if (defines && HOP(defines, self.name.name)) {
|
|
4096
|
-
compressor.warn('global_defs ' + self.name.name + ' redefined [{file}:{line},{col}]', self.start);
|
|
4097
|
-
}
|
|
4098
|
-
return self;
|
|
4099
|
-
});
|
|
4100
|
-
|
|
4101
|
-
})();
|