Commit 1fc8cf3c authored by grunghi's avatar grunghi
Browse files

Use ESM export instead of CJS in utils/lazyValue.js to prevent build error in nuxt3

parent 3a79aa41
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
// lazy-value by sindresorhus

module.exports = fn => {
export default fn => {
  let called = false;
  let result;