sieukrem / jn-npp-plugin

Plugin for Notepad++ allowing you to automate some tasks using JavaScript
https://github.com/sieukrem/jn-npp-plugin/wiki
110 stars 24 forks source link

Error attempting to use Object.assign #114

Closed technificentConsulting closed 2 years ago

technificentConsulting commented 2 years ago

An example that produces the following error. "Object doesn't support this property or Method local_67178280.js. " What am I doing wrong? Is this a limitation of the plugin? Any suggestions are appreciated.

After typing the following line I hit Run -> Current View and the error above is produced. var test = Object.assign({}, {"keyname": {}});

KOLANICH commented 2 years ago

IE 6 has no modern ECMAScript

technificentConsulting commented 2 years ago

@KOLANICH oh ok...that makes sense. Thanks!