lodash / lodash-webpack-plugin

Smaller modular Lodash builds.
Other
1.19k stars 63 forks source link

READEME incorrect #181

Open mlxiao93 opened 3 years ago

mlxiao93 commented 3 years ago

image

'plugins': [
    new LodashModuleReplacementPlugin(),
    new webpack.optimize.UglifyJsPlugin()
 ]
TbIKoBKa commented 3 years ago

README.md was updated 3 years ago. That`s so sad ;(

KhodeN commented 2 years ago

It's available in Js to use constructors without brackets (for constructors without arguments);

You can use

class A {
  constructor() {
      ....
  }
}

const a = new A;