v4.0.0
版本发布时间: 2020-07-28 02:28:51
thecodrr/fdir最新发布版本:v6.3.0(2024-08-25 21:58:51)
Breaking Changes:
- Due to issues with
export default
in the Type Definitions, I had to migrate to using named exports. (#37)
So this is now invalid:
import fdir from "fdir";
Instead do this:
ES6:
import { fdir } from "fdir";
CommonJS:
const { fdir } = require("fdir");