-
Notifications
You must be signed in to change notification settings - Fork 8
🚧 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
base: master
Are you sure you want to change the base?
Conversation
- ℹ️️ 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
traverser remove tests + update
simplify `isArrayOrObj && isObjWithKeys` -> isEmpty 🔬 tests ️ℹ️️ 🔗 some docblock links 🤖📖 docgen regen
🛅 built dist 🏗 fn names for arity 🗝️ keywords file for later
build/size-over-time.txt
Outdated
@@ -996,3 +996,27 @@ $ gzip-size "dists/umd/index.js" "--raw" | |||
Done in 0.75s. | |||
2017:40:07/18/17:17:40:52 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -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') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -10,9 +10,6 @@ | |||
"babel-plugin-transform-flow-strip-types": "^6.22.0" | |||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -0,0 +1,113 @@ | |||
const {Chain, ChainedSet, merge, eq, is} = require('../../../') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -0,0 +1,503 @@ | |||
const {Chain, isUndefined, isString, isEmpty} = require('chain-able') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -0,0 +1,149 @@ | |||
const {Chain, isUndefined, isFunction, isObj, isReal, isBoolean} = require('../../../src') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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
No description provided.