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
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<component name="ProjectCodeStyleConfiguration">
|
|
2
|
-
<code_scheme name="Project" version="173">
|
|
3
|
-
<option name="LINE_SEPARATOR" value=" " />
|
|
4
|
-
<JSCodeStyleSettings version="0">
|
|
5
|
-
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
|
6
|
-
<option name="FORCE_QUOTE_STYlE" value="true" />
|
|
7
|
-
</JSCodeStyleSettings>
|
|
8
|
-
<codeStyleSettings language="JavaScript">
|
|
9
|
-
<option name="ALIGN_MULTILINE_PARAMETERS" value="false" />
|
|
10
|
-
<option name="ALIGN_MULTILINE_FOR" value="false" />
|
|
11
|
-
<indentOptions>
|
|
12
|
-
<option name="USE_TAB_CHARACTER" value="true" />
|
|
13
|
-
</indentOptions>
|
|
14
|
-
</codeStyleSettings>
|
|
15
|
-
</code_scheme>
|
|
16
|
-
</component>
|
package/.idea/misc.xml
DELETED
package/.idea/modules.xml
DELETED
package/.idea/ppipe.iml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$" />
|
|
5
|
-
<orderEntry type="inheritedJdk" />
|
|
6
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
-
</component>
|
|
8
|
-
</module>
|