Only named exports 🔊
v2.0 breaking changes
- only named exports
// before:
import flatten from 'flatten-anything'
// now:
import { flatten } from 'flatten-anything'The others are the same:
import { flattenArray, flattenObject, flattenObjectProps } from 'flatten-anything'