This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 fix name conflicts between array.slice and string.slice (#191)
* 🐛 fix name conflicts between array.slice and string.slice * ♻️ Consistent aliased names on seq.chain * 💡 Mention aliased names in JSDoc
- Loading branch information
Showing
6 changed files
with
73 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,35 @@ | ||
export * from './array' | ||
export { | ||
concat as arrayConcat, | ||
fill, | ||
filter, | ||
map, | ||
pop, | ||
push, | ||
reverse, | ||
shift, | ||
slice as arraySlice, | ||
sort, | ||
splice, | ||
unshift, | ||
} from './array' | ||
export * from './core' | ||
export * from './lang' | ||
export * from './object' | ||
export * from './seq' | ||
export * from './string' | ||
export { | ||
concat as stringConcat, | ||
padEnd, | ||
padStart, | ||
replace, | ||
slice as stringSlice, | ||
substr, | ||
substring, | ||
toLocaleLowerCase, | ||
toLocaleUpperCase, | ||
toLowerCase, | ||
toUpperCase, | ||
trim, | ||
trimLeft, | ||
trimRight, | ||
} from './string' | ||
export * from './util' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters