Skip to content

v.1.4.0

Latest
Compare
Choose a tag to compare
@greguintow greguintow released this 17 Nov 23:28
· 3 commits to master since this release

Breaking changes

Exporting the main file with module.exports instead of exporting the function (on index, react and preact)

...
- exports.takeParts = function (str, search) {
+ module.exports = function (str, search) {
...