Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master to Develop #24

Open
wants to merge 31 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1d6baf0
Merge pull request #16 from El-Dringo-Brannde/develop
El-Dringo-Brannde Aug 8, 2018
4af7720
Merge pull request #18 from El-Dringo-Brannde/develop
El-Dringo-Brannde Aug 8, 2018
a916ecc
Merge pull request #20 from El-Dringo-Brannde/develop
El-Dringo-Brannde Aug 8, 2018
2b75ac1
Fixed ES7 issue
El-Dringo-Brannde Aug 9, 2018
8be69d2
Merge pull request #21 from El-Dringo-Brannde/hotfix
El-Dringo-Brannde Aug 9, 2018
f91b154
Added number functionality and object looping methods
El-Dringo-Brannde Aug 9, 2018
89f80c2
Babel'd the project tested on front and backend
El-Dringo-Brannde Aug 9, 2018
3bdf83d
Merge pull request #22 from El-Dringo-Brannde/publish
El-Dringo-Brannde Aug 9, 2018
82f6181
Updated tests, added typechecking
El-Dringo-Brannde Aug 10, 2018
85a48ee
Merge pull request #23 from El-Dringo-Brannde/lasttouches
El-Dringo-Brannde Aug 10, 2018
7fa21df
Merge branch 'master' into hotfix
El-Dringo-Brannde Aug 10, 2018
9c26fd4
Changed names of object methods that were conflicting with other pack…
El-Dringo-Brannde Aug 13, 2018
fcc4f58
Changed package version
El-Dringo-Brannde Aug 13, 2018
3d39156
Merge pull request #25 from El-Dringo-Brannde/hotfix
El-Dringo-Brannde Aug 13, 2018
b22930b
Added try/catch blocks
decarbonite Aug 14, 2018
cf02516
Merge pull request #27 from decarbonite/master
El-Dringo-Brannde Aug 14, 2018
f68f05c
Update package.json version
El-Dringo-Brannde Aug 14, 2018
1299794
Added uniqueBy command to filter arrays of objects
El-Dringo-Brannde Aug 16, 2018
291c57d
Merge branch 'master' into hotfix
El-Dringo-Brannde Aug 16, 2018
7880d2e
Added support for all caps to camel and capital case
El-Dringo-Brannde Aug 16, 2018
b3141d1
Merge pull request #32 from El-Dringo-Brannde/hotfix
El-Dringo-Brannde Aug 16, 2018
78b21d4
Array assignment fixed
decarbonite Aug 22, 2018
46c4ddd
Merge pull request #33 from decarbonite/master
El-Dringo-Brannde Aug 23, 2018
9a9979f
Mutating the array itself
decarbonite Aug 23, 2018
4d0593d
Updated require for lodash to be case sensitive
decarbonite Aug 23, 2018
5b7a2ed
Added tests
decarbonite Sep 4, 2018
a2dcdd2
Merge pull request #34 from decarbonite/master
El-Dringo-Brannde Sep 8, 2018
1b1a116
Added yank function
decarbonite Sep 9, 2018
6669f28
Added test cases and modifications to function
decarbonite Sep 17, 2018
abd9fff
Merge pull request #35 from decarbonite/master
El-Dringo-Brannde Sep 26, 2018
2d68005
Added templates
Dec 12, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"env"
]
}
14 changes: 13 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@
"indent": 0,
"no-tabs": 0,
"comma-dangle": 0,
"no-plusplus": 0
"no-plusplus": 0,
"require-jsdoc": [
"error",
{
"require": {
"FunctionDeclaration": true,
"MethodDefinition": false,
"ClassDeclaration": false,
"ArrowFunctionExpression": false,
"FunctionExpression": false
}
}
]
}
}
39 changes: 39 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# How to contribute

There are a few guidelines that we need contributors to follow so that we are able to process requests as efficiently as possible. If you have any questions or concerns please feel free to contact us at [[email protected]](mailto:[email protected]).

## Getting Started

* Review our [Code of Conduct](https://github.com/Nike-Inc/nike-inc.github.io/blob/master/CONDUCT.md)
* Submit the [Individual Contributor License Agreement](https://www.clahub.com/agreements/Nike-Inc/fastbreak)
* Make sure you have a [GitHub account](https://github.com/signup/free)
* Submit a ticket for your issue, assuming one does not already exist.
* Clearly describe the issue including steps to reproduce when it is a bug.
* Make sure you fill in the earliest version that you know has the issue.
* Fork the repository on GitHub

## Making Changes

* Create a topic branch off of `master` before you start your work.
* Please avoid working directly on the `master` branch.
* Make commits of logical units.
* You may be asked to squash unnecessary commits down to logical units.
* Check for unnecessary whitespace with `git diff --check` before committing.
* Write meaningful, descriptive commit messages.
* Please follow existing code conventions when working on a file.

## Submitting Changes

* Push your changes to a topic branch in your fork of the repository.
* Submit a pull request to the repository in the Nike-Inc organization.
* After feedback has been given we expect responses within two weeks. After two weeks we may close the pull request if it isn't showing any activity.
* Bug fixes or features that lack appropriate tests may not be considered for merge.
* Changes that lower test coverage may not be considered for merge.

# Additional Resources

* [General GitHub documentation](https://help.github.com/)
* [GitHub pull request documentation](https://help.github.com/send-pull-requests/)
* [Nike's Code of Conduct](https://github.com/Nike-Inc/nike-inc.github.io/blob/master/CONDUCT.md)
* [Nike's Individual Contributor License Agreement](https://www.clahub.com/agreements/Nike-Inc/fastbreak)
* [Nike OSS](https://nike-inc.github.io/)
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!--- Provide a general summary of the issue in the Title above -->

## Expected Behavior
<!--- If you're describing a bug, tell us what should happen -->
<!--- If you're suggesting a change/improvement, tell us how it should work -->

## Current Behavior
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->

## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->

## Steps to Reproduce (for bugs)
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1.
2.
3.
4.

<!-- And so on -->

## Context
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->

## Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* App Version used:
* Environment name and version:
* Operating System and version:
36 changes: 36 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!--- Provide a general summary of your changes in the Title above -->

## Description
<!--- Describe your changes in detail -->

## Related Issue
<!--- This project only accepts pull requests related to open issues -->
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
<!--- Please link to the issue here: -->

## Motivation and Context
<!--- Why is this change required? What problem does it solve? -->

## How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->

## Screenshots (if appropriate):

## Types of changes
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

## Checklist:
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [ ] My code follows the code style of this project.
- [ ] My change requires a change to the documentation.
- [ ] I have updated the documentation accordingly.
- [ ] I have read the **CONTRIBUTING** document.
- [ ] I have added tests to cover my changes.
- [ ] All new and existing tests passed.
Loading