Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jashkenas/underscore
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e4743ab712b8ab42ad4ccb48b155034d02394e4d
Choose a base ref
...
head repository: jashkenas/underscore
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e8f86fb4c670ff00abade85064c4a9cf4456fbbd
Choose a head ref

Commits on Apr 2, 2015

  1. Implement partion via group

    megawac committed Apr 2, 2015
    Copy the full SHA
    6c18935 View commit details
  2. Avoid initializer use

    megawac committed Apr 2, 2015
    Copy the full SHA
    c545b48 View commit details
  3. Merge pull request #2137 from megawac/partion-group

    Implement partion via group
    jridgewell committed Apr 2, 2015
    Copy the full SHA
    0fa1071 View commit details
  4. Some simple code cleanups

    - Moves createAssigner to just above where it's needed.
    - Use function expressions, not declarations.
    jridgewell committed Apr 2, 2015
    Copy the full SHA
    6b29e98 View commit details
  5. Merge pull request #2138 from jridgewell/code-cleanup

    Some simple code cleanups
    akre54 committed Apr 2, 2015
    Copy the full SHA
    483fc0f View commit details

Commits on Apr 3, 2015

  1. Copy the full SHA
    f934a67 View commit details
  2. Copy the full SHA
    e848714 View commit details
  3. Merge pull request #1689 from akre54/partial-placeholder

    add support for changing _.partial's placeholder
    jridgewell committed Apr 3, 2015
    Copy the full SHA
    90a95ec View commit details

Commits on Apr 8, 2015

  1. param/arg fight

    jashkenas committed Apr 8, 2015
    Copy the full SHA
    0a9d9d8 View commit details
  2. Attempt at restParams?

    ping @jridgewell @buzzdecafe @davidchambers @jdalton
    Implementation proves to be uglier than I had hoped :z going to write some benchmarks after we head for lunch
    megawac authored and jridgewell committed Apr 8, 2015
    Copy the full SHA
    f087449 View commit details
  3. Speed up _.restParams

    Fix error
    
    This is the last time I write things in Github editor
    
    Tricky slice
    
    Allow startIndex param
    
    really, really fix it this time
    
    Don't redeclare
    jridgewell committed Apr 8, 2015
    Copy the full SHA
    925f1ba View commit details
  4. Copy the full SHA
    add363c View commit details
  5. Copy the full SHA
    33f6489 View commit details
  6. Use Math.max to simplify

    jridgewell committed Apr 8, 2015
    Copy the full SHA
    d9a6f91 View commit details
  7. Test _.restParam

    jridgewell committed Apr 8, 2015
    Copy the full SHA
    4afa539 View commit details

Commits on Apr 9, 2015

  1. Rename to restArgs

    jridgewell committed Apr 9, 2015
    Copy the full SHA
    3caa2b4 View commit details
  2. Merge pull request #2140 from jashkenas/restParams

    Add _.restParam
    jashkenas committed Apr 9, 2015
    Copy the full SHA
    4f2474c View commit details

Commits on Apr 22, 2015

  1. Fix array typo in home page

    _.unzip accepts a single array of arrays.
    carltonf committed Apr 22, 2015
    Copy the full SHA
    1417938 View commit details
  2. Merge pull request #2160 from carltonf/homepage_typo_fix

    Fix array typo in home page
    akre54 committed Apr 22, 2015
    3
    Copy the full SHA
    645fba7 View commit details

Commits on Apr 23, 2015

  1. Copy the full SHA
    ed828f4 View commit details

Commits on Apr 27, 2015

  1. Cleanup _.mapObject

    jridgewell committed Apr 27, 2015
    Copy the full SHA
    b10b2e6 View commit details
  2. Merge pull request #2163 from jridgewell/mapObject

    Cleanup _.mapObject
    akre54 committed Apr 27, 2015
    Copy the full SHA
    1113ad9 View commit details
  3. Merge pull request #2162 from carltonf/fix_un/zip_doc

    Fix documents for zip and unzip.
    megawac committed Apr 27, 2015
    Copy the full SHA
    477d984 View commit details

Commits on Apr 28, 2015

  1. Merge pull request #2161 from smelnikov/result-doc-fix

    described correct behavior of _.result in docs
    jridgewell committed Apr 28, 2015
    Copy the full SHA
    9244d61 View commit details
  2. Fix grammar

    jridgewell committed Apr 28, 2015
    Copy the full SHA
    4c534ba View commit details
  3. Make _.sample more efficient by exiting early, make _.shuffle call th…

    …rough to _.sample
    
    * Improves efficiency of _.sample for when n is significantly smaller than obj.length
    * Improves tests to make sure _.sample and _.shuffle actually change the order
    * Replace shuffle with call to _.sample to avoid duplicated logic
    marekventur committed Apr 28, 2015
    Copy the full SHA
    42b763e View commit details

Commits on May 7, 2015

  1. Copy the full SHA
    770bb76 View commit details
  2. Merge pull request #2170 from zertosh/remove-require

    Reword comment to not use "require"
    megawac committed May 7, 2015
    Copy the full SHA
    c474aa3 View commit details

Commits on May 8, 2015

  1. _.restArgs cleanup

    Two points:
    - Use restArgs to cleanup `_.zip` method
    - Undo a performance regression @akre54 [mentioned](https://github.com/jashkenas/underscore/pull/2140/files#r28144086)
    jridgewell committed May 8, 2015
    Copy the full SHA
    450c21d View commit details
  2. Simplify reduce wrapper to just determine initial

    Well, and optimize `iteratee`, cause we don't really need context
    anywhere else.
    jridgewell committed May 8, 2015
    Copy the full SHA
    a7f4623 View commit details
  3. Merge pull request #2172 from jridgewell/reduce-reuse-2

    Simplify reduce wrapper to just determine initial
    akre54 committed May 8, 2015
    Copy the full SHA
    26a76e4 View commit details

Commits on May 9, 2015

  1. Merge pull request #2171 from jashkenas/restArgs-cleanup

    _.restArgs cleanup
    megawac committed May 9, 2015
    Copy the full SHA
    01dda7e View commit details

Commits on May 14, 2015

  1. Copy the full SHA
    68bb747 View commit details
  2. Merge pull request #2153 from megawac/global

    Detect global in strict mode and WebWorkers
    jridgewell committed May 14, 2015
    Copy the full SHA
    fd11c93 View commit details

Commits on May 15, 2015

  1. Copy the full SHA
    481bff7 View commit details
  2. Copy the full SHA
    8a7e8e6 View commit details
  3. 7
    Copy the full SHA
    99fd23e View commit details
  4. Copy the full SHA
    4e2d94d View commit details

Commits on May 22, 2015

  1. Merge pull request #2158 from marekventur/master

    Make _.sample more efficient by exiting early
    jashkenas committed May 22, 2015
    Copy the full SHA
    297b829 View commit details
  2. style

    jashkenas committed May 22, 2015
    Copy the full SHA
    20f1cc4 View commit details
  3. 1
    Copy the full SHA
    1673423 View commit details
  4. Merge pull request #2178 from jridgewell/use-restArgs

    Use restArgs in flatten functions
    jashkenas committed May 22, 2015
    Copy the full SHA
    e3c7ef1 View commit details
  5. Merge pull request #2185 from jridgewell/isEqual

    Optimize _.isEqual for primatives
    jashkenas committed May 22, 2015
    Copy the full SHA
    92a3007 View commit details
  6. Allow _.bindAll to take arrays

    Closes #1996, supercedes #2005.
    jridgewell committed May 22, 2015
    Copy the full SHA
    3cd0487 View commit details
  7. Merge pull request #2141 from jridgewell/bindall-array

    Allow _.bindAll to take arrays
    jashkenas committed May 22, 2015
    Copy the full SHA
    5c3470a View commit details

Commits on May 24, 2015

  1. Fix eslint errors

    jridgewell committed May 24, 2015
    Copy the full SHA
    d557242 View commit details

Commits on May 25, 2015

  1. Merge pull request #2188 from jridgewell/eslint-fixes

    Fix eslint errors
    michaelficarra committed May 25, 2015
    Copy the full SHA
    3f728b0 View commit details
  2. Sample from left to right

    jridgewell committed May 25, 2015
    Copy the full SHA
    a848bb5 View commit details
  3. Fix comment

    jridgewell committed May 25, 2015
    Copy the full SHA
    669330f View commit details

Commits on May 26, 2015

  1. Copy the full SHA
    0e326fd View commit details
Showing 386 changed files with 198,235 additions and 11,019 deletions.
29 changes: 2 additions & 27 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -4,32 +4,7 @@
"node": true,
"amd": true
},

"rules": {
"brace-style": [1, "1tbs"],
"curly": [0, "multi"],
"eqeqeq": [1, "smart"],
"max-depth": [1, 4],
"max-params": [1, 5],
"new-cap": 2,
"new-parens": 0,
"no-constant-condition": 0,
"no-div-regex": 1,
"no-else-return": 1,
"no-extra-parens": 1,
"no-floating-decimal": 2,
"no-inner-declarations": 2,
"no-lonely-if": 1,
"no-nested-ternary": 2,
"no-new-object": 0,
"no-new-func": 0,
"no-underscore-dangle": 0,
"quotes": [2, "single", "avoid-escape"],
"radix": 2,
"space-after-keywords": [2, "always"],
"space-in-brackets": [2, "never"],
"space-unary-word-ops": 2,
"strict": 0,
"wrap-iife": 2
"parserOptions": {
"ecmaVersion": 3
}
}
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tidelift: "npm/underscore"
patreon: juliangonggrijp
6 changes: 6 additions & 0 deletions .github/config/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
paths:
- 'modules/**'
- 'test/**'
- 'test-treeshake/**'
- 'rollup*.js'
- 'index.html'
78 changes: 78 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
paths:
- 'modules/**'
- 'test/**'
- 'test-treeshake/**'
- 'rollup*.js'
- 'index.html'
schedule:
- cron: '16 8 * * 3'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at
# https://codeql.github.com/docs/codeql-overview/supported-languages-and-frameworks/

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
config-file: ./.github/config/codeql.yml

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -3,3 +3,9 @@ node_modules
*.log
*.idea
*.swp
nyc_output
coverage
test-treeshake/*-umd.js
amd
cjs
/underscore-node-*-pre*
48 changes: 27 additions & 21 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,38 @@
language: node_js
node_js:
- "0.8"
- "0.12"
- "io.js"
matrix:
sudo: false
jobs:
include:
- node_js: "0.10"
env: BROWSER=true
- node_js: 8
env:
- DOWNGRADE=true
- EXTRA=false
- node_js: 12
env:
- DOWNGRADE=false
- EXTRA=false
- node_js: 16
env:
- DOWNGRADE=false
- EXTRA=true
before_install:
- npm install -g npm@2.6
- npm install -g karma-cli
- "[ $EXTRA = false ] || npm install -g karma-cli"
before_script:
- npm install karma-sauce-launcher
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- "[ $EXTRA = false ] || npm install karma-sauce-launcher"
- "[ $DOWNGRADE = false ] || npm install rollup@1"
script:
- npm test
- "[ $BROWSER == false ] || npm run test-browser"
# Karma sauce is limited to running about 5-7 browsers (or it will tiemout) at a time so we just run vendor by vendor here
- "[ $BROWSER == false ] || karma start karma.conf-sauce.js --browsers FIREFOX_V4,FIREFOX_V11,FIREFOX_V20,FIREFOX_V30,FIREFOX_V35"
- "[ $BROWSER == false ] || karma start karma.conf-sauce.js --browsers CHROME_V28,CHROME_V35,CHROME_V40,ANDROID_V4.0,ANDROID_V4.3"
- "[ $BROWSER == false ] || karma start karma.conf-sauce.js --browsers INTERNET_EXPLORER_V9,INTERNET_EXPLORER_V10,INTERNET_EXPLORER_V11"
- "[ $BROWSER == false ] || karma start karma.conf-sauce.js --browsers SAFARI_V5,SAFARI_V6,SAFARI_V7"
- "[ $BROWSER == false ] || karma start karma.conf-sauce.js --browsers OPERA_V11,OPERA_V12"
- "[ $EXTRA = false ] || npm run lint"
- npm run prepare-tests
- "[ $EXTRA = false ] || npm run build-umd"
- "[ $EXTRA = false ] || npm run build-esm"
- "[ $EXTRA = false ] || npm run doc"
- "[ $EXTRA = true ] || npm run test-node"
- "[ $EXTRA = false ] || npm run coveralls"
- "[ $EXTRA = false ] || npm run test-browser"
- "[ $EXTRA = false ] || karma start karma.conf-sauce.js"
notifications:
email: false
env:
global:
- NPM_CONFIG_PROGRESS="false"
- secure: bDZSBQfqr21hCayjcZ20IxrV6+XGhxQPFIfwWqEKLrF93Gu8LLVjZRxXE/mE8I8N4Z5WtDNb4ZHrm/TTzmcPa5MuHgIxEdknQCncobH8oimwc83SHwEPk6okeNKl39VlCjvvnmoe/V/KpnknuYn3Rqghtl/Uv9KLpCwskwjTtcw=
- secure: SRECgXuwcZTcD3GVxTS2bYNgRyye4vq6BLrV2PH9FyNenowsKQR2EwlC/dppc1Q8NWMgv79J/R96q9JOFh+mEH9L5dlBb2yhnGH8amVeM/ChAJHT/F8YktKM453uVpz5fR00QcCQDDUOx6Pvx374ID0OKNpWKAkQBWA9mPTsLnE=
matrix: BROWSER=false
93 changes: 93 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, gender identity and expression, level of experience,
nationality, personal appearance, race, religion, or sexual identity and
orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at jashkenas@gmail.com. The project team
will review and investigate all complaints, and will respond in a way that it deems
appropriate to the circumstances. The project team is obligated to maintain
confidentiality with regard to the reporter of an incident.
Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.

## Moderation

Edits of another user's comment must be clearly marked with "**edit**", the
moderator's username, and a timestamp for each occurrence. The only acceptable
reasons for editing another user's comment are:

1. to edit out violations of Our Pledge. These edits must include a rationale.
2. to direct future readers to a relevant point later in the conversation
(usually the resolution). These edits must be append-only.

Deletion of another user's comment is only acceptable when the comment includes
no original value, such as "+1", ":+1:", or "me too".

## Self-Moderation

Edits of your own comment after someone has responded must be append-only and
clearly marked with "**edit**". Typographical and formatting fixes to your own
comment which do not affect its meaning are exempt from this requirement.
Deletion of your own comment is only acceptable before any later comments have
been posted.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at [https://contributor-covenant.org/version/1/4][version]

[homepage]: https://contributor-covenant.org
[version]: https://contributor-covenant.org/version/1/4/
15 changes: 12 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
## How to contribute to Underscore.js

* This project adheres to a [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.

* Please do not open a ticket to report a security issue. Consult the [security policy](SECURITY.md) on what to do instead.

* Before you open a ticket or send a pull request, [search](https://github.com/jashkenas/underscore/issues) for previous discussions about the same feature or issue. Add to the earlier ticket if you find one.

* If you're proposing a new feature, make sure it isn't already implemented in [Underscore-Contrib](https://github.com/documentcloud/underscore-contrib).

* Before sending a pull request for a feature, be sure to have [tests](http://underscorejs.org/test/).
* When contributing code, make sure that you edit the source code in the `modules/` directory. Also, run `npm install` before committing any changes to ensure that our commit hooks can do their work.

* Before sending a pull request for a feature, be sure to have [tests](https://underscorejs.org/test/).

* Use the same coding style as the rest of the [codebase](https://github.com/jashkenas/underscore/blob/master/modules/index.js).

* Use the same coding style as the rest of the [codebase](https://github.com/jashkenas/underscore/blob/master/underscore.js).
* In your pull request, do not add documentation or re-build the minified `underscore-umd-min.js` file. We'll do those things before cutting a new release.

* In your pull request, do not add documentation or re-build the minified `underscore-min.js` file. We'll do those things before cutting a new release.
### "Help, cloning fails with `fatal: fsck error in packed object`"
This error is caused by zero-padded file modes in the commit history. As fixing this is highly destructive, we suggest ignoring these warnings. The simplest way is to instruct git to do so when cloning. For example, to clone from `jashkenas/underscore`, run the following command: `git clone --config transfer.fsckobjects=false git@github.com:jashkenas/underscore.git`. If cloning from a different user or organization, replace `jashkenas` with their name in the previous command.
3 changes: 1 addition & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Copyright (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative
Reporters & Editors
Copyright (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -13,10 +13,22 @@ support for the usual functional suspects (each, map, reduce, filter...)
without extending any core JavaScript objects.

For Docs, License, Tests, and pre-packed downloads, see:
http://underscorejs.org
https://underscorejs.org

For support and questions, please consult
our [security policy](SECURITY.md),
[the gitter channel](https://gitter.im/jashkenas/underscore)
or [stackoverflow](https://stackoverflow.com/search?q=underscore.js)

Underscore is an open-sourced component of DocumentCloud:
https://github.com/documentcloud

Many thanks to our contributors:
https://github.com/jashkenas/underscore/contributors

You can support the project by donating on
[Patreon](https://patreon.com/juliangonggrijp).
Enterprise coverage is available as part of the
[Tidelift Subscription](https://tidelift.com/subscription/pkg/npm-underscore?utm_source=npm-underscore&utm_medium=referral&utm_campaign=enterprise).

This project adheres to a [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.
38 changes: 38 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Security Policy

## Supported Versions

We currently support the following versions of Underscore with security updates:

- the latest commit on the `master` branch (published as "edge" on the
[project website][website]);
- the 1.x release tagged as [latest][npm-latest] on npm;
- any release tagged as [preview][npm-preview] on npm, if present.

[website]: https://underscorejs.org
[npm-latest]: https://www.npmjs.com/package/underscore/v/latest
[npm-preview]: https://www.npmjs.com/package/underscore/v/preview

## Reporting a Vulnerability

Please report security issues by sending an email to
dev@juliangonggrijp.com and jashkenas@gmail.com.

Do __not__ submit an issue ticket or pull request or otherwise publicly
disclose the issue.

After receiving your email, we will respond as soon as possible and indicate
what we plan to do.

## Disclosure policy

After confirming a vulnerability, we will generally release a security update
as soon as possible, including the minimum amount of information required for
software maintainers and system administrators to assess the urgency of the
update for their particular situation.

We postpone the publication of any further details such as code comments,
tests, commit history and diffs, in order to enable a substantial share of the
users to install the security fix before this time.

Upon publication of full details, we will credit the reporter if the reporter wishes to be publicly identified.
5 changes: 2 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "underscore",
"version": "1.8.3",
"main": "underscore.js",
"main": "underscore-umd.js",
"keywords": ["util", "functional", "server", "client", "browser"],
"ignore" : ["docs", "test", "*.yml", "CNAME", "index.html", "favicon.ico", "CONTRIBUTING.md", ".*", "component.json", "package.json", "karma.*"]
"ignore" : ["docs", "test", "*.yml", "CNAME", "index.html", "favicon.ico", "CONTRIBUTING.md", ".*", "package.json", "karma.*"]
}
Loading