Alexander
Alexander
Can't run tests because "package" is now a reserved word in node.js. So it must be changed.
```js const Heap = require('heap'); function msgidComparator(e1, e2) { if (e1.msgid > e2.msgid) { return 1; } if (e2.msgid > e1.msgid) { return -1; } return 0; } const data...
Project - https://c-3po.js.org
For now, to be able to pass multiple references for translation i need to concatenate them with `\n` symbols. Would be great if we could pass those references as array....
ability to deprecate some member expressions like forbidding map method from the lodash: ```js import l from 'lodash' l.map() ```