AilisObrian

Results 10 comments of AilisObrian

happened to me when I used this with ``` node: 6.5.0 express: 4.14.0 socket.io: 1.5.0 monitor.io: 0.1.0 ```

R.I.P and Thanks always.

Is it related with `gettext-parser`? because I couldn't find any evidence linked with `iconv-loader.js` yet.

`gettext-parser` leads to 'encoding' which includes `iconv-loader.js`.

`gettext-parser` manually fixed to v1.2.2 (currently latest)

@biesbjerg yeah, it's related with andris9/encoding#16

If we extract the angular-cli's `webpack.config.js` by `ng eject` and modify it as andris9/encoding#16, we can bypass this issue. But I'll choose to use [po2json](https://github.com/mikeedwards/po2json). ```sh /node_modules/.bin/po2json input.po output.json --pretty...

In my case, ``` javascript function jwtVerifyPromise(token, verifyKey) { return new Promise((resolve, reject) => { const tokens = token.split(' '); if (tokens[0] === 'Bearer') { jwt.verify(tokens[1], verifyKey, (err, verified) =>...