airbnb / polyglot.js

Give your JavaScript the ability to speak many languages.
http://airbnb.github.io/polyglot.js
BSD 2-Clause "Simplified" License
3.71k stars 208 forks source link

v2 browser support? #55

Closed antpaw closed 8 years ago

antpaw commented 8 years ago
   [Breaking] Remove non-node support + use object.assign/for-each.

does it mean the library can no longer be used in the browser? If the answer is yes, can you tell me what are the reasons to drop the support?

Thanks

ljharb commented 8 years ago

Nope! It just means you'd use browserify or webpack or a similar tool to use it in the browser. Modern web dev requires using a module system and a build process, and individual modules don't need to handle that complexity.

antpaw commented 8 years ago

okay cool, is there a list of browsers v2 supports?

ljharb commented 8 years ago

@antpaw it continues to support everything. If you find a browser it doesn't work in, please file an issue.

antpaw commented 8 years ago

okay thanks, will do.