Skip to content

🚧 V5 #44

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

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open

🚧 V5 #44

wants to merge 44 commits into from

Conversation

aretecode
Copy link
Contributor

No description provided.

aretecode added 30 commits July 17, 2017 00:30
- ℹ️️ for curry 🔬
- ℹ️️ for mapWhere 🔬
- ℹ️️ for path  🔬
- ℹ️️ for pipe 🔬
- ℹ️️ for prop 🔬
- 🎁 add first 🔬
- 🎁 add fistIndex 🔬
- ℹ️️ add index as a `@member`
- 🎁 add last 🔬
- 🎁 add lastIndex 🔬
- 🎁 add replace 🔬
- share some memory with variables instead of new memory allocations for useless pointers
- add back lego-cli for later
- 📇 metadata for docgen
- 📇 metadata yarn lock pkg json stuff
- 🏗🔌 comment plugin to add filenames to output
- 🏸 cdn server hosting in installations in readme for site
finish frisbee tests,
rename DecoratorChain from decorators.js
readme minor tweaks
simplify `isArrayOrObj && isObjWithKeys` -> isEmpty
🔬 tests
️ℹ️️ 🔗 some docblock links
🤖📖 docgen regen
🛅 built dist
🏗 fn names for arity
🗝️ keywords file for later
@@ -996,3 +996,27 @@ $ gzip-size "dists/umd/index.js" "--raw"
Done in 0.75s.
2017:40:07/18/17:17:40:52
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#39

@@ -37,7 +37,7 @@ const ObjectAssign = require('./deps/util/assign')
// utils
const toarr = require('./deps/to-arr')
const argumentor = require('./deps/argumentor')
const camelCase = require('./deps/camel-case')
const camelCase = require('./deps/string/camelCase')
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#39

@@ -10,9 +10,6 @@
"babel-plugin-transform-flow-strip-types": "^6.22.0"
},
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#29

@@ -0,0 +1,113 @@
const {Chain, ChainedSet, merge, eq, is} = require('../../../')
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#16

@@ -0,0 +1,503 @@
const {Chain, isUndefined, isString, isEmpty} = require('chain-able')
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#16

@@ -0,0 +1,149 @@
const {Chain, isUndefined, isFunction, isObj, isReal, isBoolean} = require('../../../src')
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#16

aretecode added 14 commits July 20, 2017 18:16
more minor utils (or in str or num),
rename .iteratee to .node,
ternary in transform.remap

more docblock content
move isNested
clean some traverse
- 🆙 conditional/
  - ℹ️ more docs to `all` & `and` & `not` & `some`
  - 🐏 curry `not`
  - /includes
    - 🐏 curry
    - ❔ use isString > isArray as first check
- 🕴 for exporting native/built-in prototype methods and such
- 🔗minor tweaks & links
- 🚚 move ignored to meta/
👷 construct (used in index when exporting .build & .init/.chainable)
  - 🆙 utils/ 🕴 exports
  - 🌏 localGlobal (window || global)
  - 🔢 lengthFromZero
    - ℹ️️ docs
    - 😡 use lengthFromZero in `argumentor`
  - ⛑ hasOwnProperty add `isNill` safety
  - ℹ️️ more docs to arity, always, curry, replace, prop
  - 🛅 shorten firstIndex, lastIndex
  - ⬅️🆕 reverse
  - 👷🆕 construct (used in index when exporting .build & .init/.chainable)
  - ❔🆕 includesCount (RESEARCH BETTER NAME) (occurs?)
  - ❔🆕 hasInMatching
  - 📞🆕 invoke
  - 🕴 export more in the index
  - 🤸`|` pipe split into pipeTwo + pipe (for dynamic length args & 2 args)
- ❔ is/
  - ❔ is/ ℹ️ℹ️ℹ️️ docs 🆕🆕🆕 🔬🔩
  - ℹ️️ docs: arguments, array, boolean, buffer, hasIn, objNotNull, prototypeOf, string, undefined, arrayOf, asyncish, async, dot, enumerable, function, generator, json, toS/getTag
  - ⚒ fix ℹ️ docs ⌨️ typo in primitive
  - 🔬 tests for 🆕
  - ❔🆕 isMatch
  - ❔🆕 isInstanceOf
  - ❔🆕 isUndefinedLike
  - ❔🆕 isWeakMap
  - ❔🆕 isWeakSet
  - ❔🆕 isIteratable (moved from traverse)
  - ❔🆕 isCircular
  - ❔🆕 isBooleanPrimitive (split from isBoolean)
  - ❔🆕 isMatch (not exported boolean version of matcher)
  - ❔🆕 isBrowser (using util/localGlobal & isUndefinedLike)
  - 🔩 use native/ in isNative
  - 🆙 use `or` in isAsyncish
- 🐏 🎁 fp/ ...again
  - ℹ️ more docs 👷 construct/ 🆕🙃 flip 🆕 invoker
  - ℹ️️ more docs to first, firstIndex, includesCount, last, lastIndex, reverse
  - 🔬 more adapted tests
  - 🆕 invoker
  - 🆕🙃 flip
    - 🙃🙃 flip2 (just first2 args)
- 👷 construct/
  - map, set, regexp
🚚🔬 move dopemerge map & set example into skipped test
🚚 move concat to /array
🐏👷 use construct in traverse/copy & matcher & to-test

- 🆕 to/
  - array
  - string
  - boolean
  - number
  - object
  - integer
  - map
  - set
  - setToArray
  - coerce
@aretecode aretecode mentioned this pull request Jul 26, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant