Skip to content

Releases: mixmaxhq/search-string

v4.0.0

09 Oct 00:43
Compare
Choose a tag to compare

What's Changed

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

Full Changelog: v3.1.0...v4.0.0