ppipe 2.6.3 → 2.6.6
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.js +212 -8
- package/.github/CONTRIBUTING.md +13 -13
- package/.github/ISSUE_TEMPLATE.md +17 -17
- package/.github/PULL_REQUEST_TEMPLATE.md +30 -30
- package/.travis.yml +3 -3
- package/CODE_OF_CONDUCT.md +46 -46
- package/LICENSE +13 -13
- package/README.md +329 -322
- package/package.json +36 -32
- package/prettier.config.js +8 -0
- package/src/getPropertyByPath.js +8 -6
- package/src/index.js +49 -41
- package/src/lib/isFunction.js +1 -1
- package/src/lib/isPromise.js +1 -1
- package/test/examples.js +175 -175
- package/test/test.js +603 -603
- package/.idea/codeStyles/Project.xml +0 -16
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/ppipe.iml +0 -8
- package/.idea/vcs.xml +0 -6
package/.eslintrc.js
CHANGED
|
@@ -1,19 +1,223 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
+
plugins: ["prettier"],
|
|
2
3
|
parserOptions: {
|
|
3
|
-
ecmaVersion: 8
|
|
4
|
+
ecmaVersion: 8,
|
|
4
5
|
},
|
|
5
6
|
env: {
|
|
6
7
|
browser: true,
|
|
7
8
|
commonjs: true,
|
|
8
9
|
es6: true,
|
|
9
10
|
node: true,
|
|
10
|
-
mocha: true
|
|
11
|
+
mocha: true,
|
|
11
12
|
},
|
|
12
|
-
extends: "
|
|
13
|
+
extends: ["plugin:prettier/recommended"],
|
|
13
14
|
rules: {
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
"prettier/prettier": "error",
|
|
16
|
+
"one-var": ["error", "never"],
|
|
17
|
+
"one-var-declaration-per-line": ["error", "always"],
|
|
18
|
+
"operator-assignment": ["error", "always"],
|
|
19
|
+
"operator-linebreak": [
|
|
20
|
+
"error",
|
|
21
|
+
"before",
|
|
22
|
+
{
|
|
23
|
+
overrides: {
|
|
24
|
+
"=": "none",
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
"max-statements-per-line": [
|
|
29
|
+
"error",
|
|
30
|
+
{
|
|
31
|
+
max: 1,
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
eqeqeq: ["error", "always"],
|
|
35
|
+
"no-multiple-empty-lines": [
|
|
36
|
+
"error",
|
|
37
|
+
{
|
|
38
|
+
max: 1,
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
"no-unexpected-multiline": "error",
|
|
42
|
+
"no-unreachable": "error",
|
|
43
|
+
"no-extra-boolean-cast": "off",
|
|
44
|
+
"no-unused-vars": "error",
|
|
45
|
+
"no-empty": "error",
|
|
46
|
+
"no-useless-escape": "off",
|
|
47
|
+
"comma-spacing": [
|
|
48
|
+
"error",
|
|
49
|
+
{
|
|
50
|
+
before: false,
|
|
51
|
+
after: true,
|
|
52
|
+
},
|
|
53
|
+
],
|
|
54
|
+
"no-undef": "error",
|
|
55
|
+
"no-console": "warn",
|
|
56
|
+
"block-spacing": ["error", "always"],
|
|
57
|
+
yoda: "error",
|
|
58
|
+
"arrow-spacing": "error",
|
|
59
|
+
"func-call-spacing": ["error", "never"],
|
|
60
|
+
"function-call-argument-newline": ["error", "consistent"],
|
|
61
|
+
"no-extra-semi": "error",
|
|
62
|
+
"no-control-regex": "error",
|
|
63
|
+
"no-global-assign": "error",
|
|
64
|
+
"no-redeclare": "error",
|
|
65
|
+
"no-cond-assign": "error",
|
|
66
|
+
"key-spacing": [
|
|
67
|
+
"error",
|
|
68
|
+
{
|
|
69
|
+
beforeColon: false,
|
|
70
|
+
},
|
|
71
|
+
],
|
|
72
|
+
"array-bracket-spacing": ["error", "never"],
|
|
73
|
+
"array-bracket-newline": ["error", "consistent"],
|
|
74
|
+
"array-element-newline": ["error", "consistent"],
|
|
75
|
+
"spaced-comment": [
|
|
76
|
+
"error",
|
|
77
|
+
"always",
|
|
78
|
+
{
|
|
79
|
+
exceptions: ["-", "+"],
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
"object-curly-spacing": ["error", "always"],
|
|
83
|
+
"object-curly-newline": [
|
|
84
|
+
"error",
|
|
85
|
+
{
|
|
86
|
+
consistent: true,
|
|
87
|
+
},
|
|
88
|
+
],
|
|
89
|
+
"object-property-newline": [
|
|
90
|
+
"error",
|
|
91
|
+
{
|
|
92
|
+
allowAllPropertiesOnSameLine: true,
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
curly: "error",
|
|
96
|
+
"no-mixed-operators": "error",
|
|
97
|
+
"arrow-body-style": ["error", "as-needed"],
|
|
98
|
+
"arrow-parens": "error",
|
|
99
|
+
"no-confusing-arrow": "error",
|
|
100
|
+
"prefer-arrow-callback": "error",
|
|
101
|
+
"max-len": [
|
|
102
|
+
"error",
|
|
103
|
+
{
|
|
104
|
+
code: 120,
|
|
105
|
+
tabWidth: 4,
|
|
106
|
+
},
|
|
107
|
+
],
|
|
108
|
+
"array-callback-return": "error",
|
|
109
|
+
"brace-style": ["error", "1tbs"],
|
|
110
|
+
"no-prototype-builtins": "off",
|
|
111
|
+
"prefer-const": "error",
|
|
112
|
+
camelcase: [
|
|
113
|
+
"error",
|
|
114
|
+
{
|
|
115
|
+
properties: "never",
|
|
116
|
+
ignoreDestructuring: false,
|
|
117
|
+
},
|
|
118
|
+
],
|
|
119
|
+
"no-var": "error",
|
|
120
|
+
"class-methods-use-this": "error",
|
|
121
|
+
"default-param-last": "error",
|
|
122
|
+
"no-alert": "error",
|
|
123
|
+
"no-caller": "error",
|
|
124
|
+
"comma-dangle": [
|
|
125
|
+
"error",
|
|
126
|
+
{
|
|
127
|
+
arrays: "always-multiline",
|
|
128
|
+
objects: "always-multiline",
|
|
129
|
+
imports: "always-multiline",
|
|
130
|
+
exports: "always-multiline",
|
|
131
|
+
functions: "always-multiline",
|
|
132
|
+
},
|
|
133
|
+
],
|
|
134
|
+
"no-constructor-return": "error",
|
|
135
|
+
"no-else-return": "error",
|
|
136
|
+
"dot-location": ["error", "property"],
|
|
137
|
+
"max-classes-per-file": ["error", 1],
|
|
138
|
+
semi: ["error", "always"],
|
|
139
|
+
"semi-spacing": [
|
|
140
|
+
"error",
|
|
141
|
+
{
|
|
142
|
+
before: false,
|
|
143
|
+
after: true,
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
"semi-style": ["error", "last"],
|
|
147
|
+
"padded-blocks": [
|
|
148
|
+
"error",
|
|
149
|
+
"never",
|
|
150
|
+
{
|
|
151
|
+
allowSingleLineBlocks: true,
|
|
152
|
+
},
|
|
153
|
+
],
|
|
154
|
+
"space-before-blocks": "error",
|
|
155
|
+
"space-in-parens": ["error", "never"],
|
|
156
|
+
"space-infix-ops": "error",
|
|
157
|
+
"no-multi-spaces": "error",
|
|
158
|
+
"space-unary-ops": [
|
|
159
|
+
"error",
|
|
160
|
+
{
|
|
161
|
+
words: true,
|
|
162
|
+
nonwords: false,
|
|
163
|
+
overrides: {},
|
|
164
|
+
},
|
|
165
|
+
],
|
|
166
|
+
"switch-colon-spacing": [
|
|
167
|
+
"error",
|
|
168
|
+
{
|
|
169
|
+
after: true,
|
|
170
|
+
before: false,
|
|
171
|
+
},
|
|
172
|
+
],
|
|
173
|
+
"dot-notation": "error",
|
|
174
|
+
"padding-line-between-statements": [
|
|
175
|
+
"error",
|
|
176
|
+
{
|
|
177
|
+
blankLine: "always",
|
|
178
|
+
prev: "expression",
|
|
179
|
+
next: "block-like",
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
blankLine: "always",
|
|
183
|
+
prev: "block-like",
|
|
184
|
+
next: "expression",
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
blankLine: "always",
|
|
188
|
+
prev: "*",
|
|
189
|
+
next: "import",
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
blankLine: "always",
|
|
193
|
+
prev: "*",
|
|
194
|
+
next: "return",
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
blankLine: "always",
|
|
198
|
+
prev: "import",
|
|
199
|
+
next: "*",
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
blankLine: "any",
|
|
203
|
+
prev: "import",
|
|
204
|
+
next: "import",
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
blankLine: "always",
|
|
208
|
+
prev: ["const", "let", "var"],
|
|
209
|
+
next: "*",
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
blankLine: "always",
|
|
213
|
+
prev: "*",
|
|
214
|
+
next: ["const", "let", "var"],
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
blankLine: "any",
|
|
218
|
+
prev: ["const", "let", "var"],
|
|
219
|
+
next: ["const", "let", "var"],
|
|
220
|
+
},
|
|
221
|
+
],
|
|
222
|
+
},
|
|
19
223
|
};
|
package/.github/CONTRIBUTING.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
## Contributing
|
|
2
|
-
|
|
3
|
-
### License
|
|
4
|
-
|
|
5
|
-
[ISC](https://en.wikipedia.org/wiki/ISC_license) (Very similar to MIT)
|
|
6
|
-
|
|
7
|
-
### Hostility towards anyone trying to help by reporting bugs or asking questions
|
|
8
|
-
|
|
9
|
-
None.
|
|
10
|
-
|
|
11
|
-
### Pull requests?
|
|
12
|
-
|
|
13
|
-
Who doesn't love them?
|
|
1
|
+
## Contributing
|
|
2
|
+
|
|
3
|
+
### License
|
|
4
|
+
|
|
5
|
+
[ISC](https://en.wikipedia.org/wiki/ISC_license) (Very similar to MIT)
|
|
6
|
+
|
|
7
|
+
### Hostility towards anyone trying to help by reporting bugs or asking questions
|
|
8
|
+
|
|
9
|
+
None.
|
|
10
|
+
|
|
11
|
+
### Pull requests?
|
|
12
|
+
|
|
13
|
+
Who doesn't love them?
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
### Expected Behavior
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Actual Behavior
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
### Steps to Reproduce the Problem
|
|
8
|
-
|
|
9
|
-
1.
|
|
10
|
-
1.
|
|
11
|
-
1.
|
|
12
|
-
|
|
13
|
-
### Specifications
|
|
14
|
-
|
|
15
|
-
- Version:
|
|
16
|
-
- Platform (Node, web, electron...):
|
|
17
|
-
- Platform version:
|
|
1
|
+
### Expected Behavior
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Actual Behavior
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### Steps to Reproduce the Problem
|
|
8
|
+
|
|
9
|
+
1.
|
|
10
|
+
1.
|
|
11
|
+
1.
|
|
12
|
+
|
|
13
|
+
### Specifications
|
|
14
|
+
|
|
15
|
+
- Version:
|
|
16
|
+
- Platform (Node, web, electron...):
|
|
17
|
+
- Platform version:
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
<!--- Provide a general summary of your changes in the Title above -->
|
|
2
|
-
|
|
3
|
-
## Description
|
|
4
|
-
<!--- Describe your changes in detail -->
|
|
5
|
-
|
|
6
|
-
## Motivation and Context
|
|
7
|
-
<!--- Why is this change required? What problem does it solve? -->
|
|
8
|
-
<!--- If it fixes an open issue, please link to the issue here. -->
|
|
9
|
-
|
|
10
|
-
## How Has This Been Tested?
|
|
11
|
-
<!--- Please describe in detail how you tested your changes. -->
|
|
12
|
-
<!--- Include details of your testing environment, tests ran to see how -->
|
|
13
|
-
<!--- your change affects other areas of the code, etc. -->
|
|
14
|
-
|
|
15
|
-
## Screenshots (if appropriate):
|
|
16
|
-
|
|
17
|
-
## Types of changes
|
|
18
|
-
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
|
|
19
|
-
- [ ] Bug fix (non-breaking change which fixes an issue)
|
|
20
|
-
- [ ] New feature (non-breaking change which adds functionality)
|
|
21
|
-
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
|
22
|
-
|
|
23
|
-
## Checklist:
|
|
24
|
-
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
|
|
25
|
-
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
|
|
26
|
-
- [ ] All tests pass.
|
|
27
|
-
- [ ] Test coverage is 100%.
|
|
28
|
-
- [ ] I used prettier and eslint, which made me follow the style of this project.
|
|
29
|
-
- [ ] My change requires a change to the documentation.
|
|
30
|
-
- [ ] I have updated the documentation accordingly.
|
|
1
|
+
<!--- Provide a general summary of your changes in the Title above -->
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
<!--- Describe your changes in detail -->
|
|
5
|
+
|
|
6
|
+
## Motivation and Context
|
|
7
|
+
<!--- Why is this change required? What problem does it solve? -->
|
|
8
|
+
<!--- If it fixes an open issue, please link to the issue here. -->
|
|
9
|
+
|
|
10
|
+
## How Has This Been Tested?
|
|
11
|
+
<!--- Please describe in detail how you tested your changes. -->
|
|
12
|
+
<!--- Include details of your testing environment, tests ran to see how -->
|
|
13
|
+
<!--- your change affects other areas of the code, etc. -->
|
|
14
|
+
|
|
15
|
+
## Screenshots (if appropriate):
|
|
16
|
+
|
|
17
|
+
## Types of changes
|
|
18
|
+
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
|
|
19
|
+
- [ ] Bug fix (non-breaking change which fixes an issue)
|
|
20
|
+
- [ ] New feature (non-breaking change which adds functionality)
|
|
21
|
+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
|
22
|
+
|
|
23
|
+
## Checklist:
|
|
24
|
+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
|
|
25
|
+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
|
|
26
|
+
- [ ] All tests pass.
|
|
27
|
+
- [ ] Test coverage is 100%.
|
|
28
|
+
- [ ] I used prettier and eslint, which made me follow the style of this project.
|
|
29
|
+
- [ ] My change requires a change to the documentation.
|
|
30
|
+
- [ ] I have updated the documentation accordingly.
|
package/.travis.yml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
language: node_js
|
|
2
|
-
node_js:
|
|
3
|
-
- "
|
|
1
|
+
language: node_js
|
|
2
|
+
node_js:
|
|
3
|
+
- "14"
|
|
4
4
|
after_success: npm run coverage
|
package/CODE_OF_CONDUCT.md
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
# Contributor Covenant Code of Conduct
|
|
2
|
-
|
|
3
|
-
## Our Pledge
|
|
4
|
-
|
|
5
|
-
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.
|
|
6
|
-
|
|
7
|
-
## Our Standards
|
|
8
|
-
|
|
9
|
-
Examples of behavior that contributes to creating a positive environment include:
|
|
10
|
-
|
|
11
|
-
* Using welcoming and inclusive language
|
|
12
|
-
* Being respectful of differing viewpoints and experiences
|
|
13
|
-
* Gracefully accepting constructive criticism
|
|
14
|
-
* Focusing on what is best for the community
|
|
15
|
-
* Showing empathy towards other community members
|
|
16
|
-
|
|
17
|
-
Examples of unacceptable behavior by participants include:
|
|
18
|
-
|
|
19
|
-
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
|
20
|
-
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
21
|
-
* Public or private harassment
|
|
22
|
-
* Publishing others' private information, such as a physical or electronic address, without explicit permission
|
|
23
|
-
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
|
24
|
-
|
|
25
|
-
## Our Responsibilities
|
|
26
|
-
|
|
27
|
-
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.
|
|
28
|
-
|
|
29
|
-
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.
|
|
30
|
-
|
|
31
|
-
## Scope
|
|
32
|
-
|
|
33
|
-
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.
|
|
34
|
-
|
|
35
|
-
## Enforcement
|
|
36
|
-
|
|
37
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project owner. You can find the contact details on [egeozcan.com](https://egeozcan.com). The project owner will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project owner is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
|
38
|
-
|
|
39
|
-
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.
|
|
40
|
-
|
|
41
|
-
## Attribution
|
|
42
|
-
|
|
43
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
|
44
|
-
|
|
45
|
-
[homepage]: http://contributor-covenant.org
|
|
46
|
-
[version]: http://contributor-covenant.org/version/1/4/
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
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.
|
|
6
|
+
|
|
7
|
+
## Our Standards
|
|
8
|
+
|
|
9
|
+
Examples of behavior that contributes to creating a positive environment include:
|
|
10
|
+
|
|
11
|
+
* Using welcoming and inclusive language
|
|
12
|
+
* Being respectful of differing viewpoints and experiences
|
|
13
|
+
* Gracefully accepting constructive criticism
|
|
14
|
+
* Focusing on what is best for the community
|
|
15
|
+
* Showing empathy towards other community members
|
|
16
|
+
|
|
17
|
+
Examples of unacceptable behavior by participants include:
|
|
18
|
+
|
|
19
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
|
20
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
21
|
+
* Public or private harassment
|
|
22
|
+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
|
|
23
|
+
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
|
24
|
+
|
|
25
|
+
## Our Responsibilities
|
|
26
|
+
|
|
27
|
+
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.
|
|
28
|
+
|
|
29
|
+
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.
|
|
30
|
+
|
|
31
|
+
## Scope
|
|
32
|
+
|
|
33
|
+
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.
|
|
34
|
+
|
|
35
|
+
## Enforcement
|
|
36
|
+
|
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project owner. You can find the contact details on [egeozcan.com](https://egeozcan.com). The project owner will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project owner is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
|
38
|
+
|
|
39
|
+
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.
|
|
40
|
+
|
|
41
|
+
## Attribution
|
|
42
|
+
|
|
43
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
|
44
|
+
|
|
45
|
+
[homepage]: http://contributor-covenant.org
|
|
46
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
package/LICENSE
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
Copyright
|
|
2
|
-
|
|
3
|
-
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
4
|
-
with or without fee is hereby granted, provided that the above copyright notice
|
|
5
|
-
and this permission notice appear in all copies.
|
|
6
|
-
|
|
7
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
8
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
9
|
-
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
|
|
10
|
-
OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
11
|
-
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
12
|
-
ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
13
|
-
SOFTWARE.
|
|
1
|
+
Copyright 2020 Yavuz Ege Özcan
|
|
2
|
+
|
|
3
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
4
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
5
|
+
and this permission notice appear in all copies.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
8
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
9
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
|
|
10
|
+
OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
11
|
+
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
12
|
+
ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
13
|
+
SOFTWARE.
|