Releases: mixmaxhq/search-string
Releases · mixmaxhq/search-string
v4.0.0
What's Changed
- feat: add typescript by @raphaelbs in #42
BREAKING CHANGE
If you are using this package on a CommonJS environment, make sure to change the code accordingly:
// ❌ Replace this
import { parse } from 'search-string';
// 🟢 With
import SearchString from 'search-string';
// and them
SearchString.parse()
// ❌ Replace this
const SearchString = require('search-string');
// 🟢 with
const SearchString = require('search-string').default;
New Contributors
- @raphaelbs made their first contribution in #42
Full Changelog: v3.1.0...v4.0.0