You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does not amdify properly. When I use npmrel, the wrapper is:
//Wrapped in an outer function to preserve global this
(function (root) { define([undefined], function (undefined) { (function () {
....
}.call(root));
undefined
}); }(this));
When I manually use amdify, it looks similar, but the undefineds aren't there. FWIW, the module does work "properly" in node.
The text was updated successfully, but these errors were encountered:
er, and when RequireJS goes and requires the file, it gets undefined out. I double-checked by going to require.s.contexts._.defined["mailparser/datetime"] and its value is undefined there too.
This file:
https://github.com/andris9/mailparser/blob/master/lib/datetime.js
whose content is basically:
Does not amdify properly. When I use npmrel, the wrapper is:
When I manually use amdify, it looks similar, but the undefineds aren't there. FWIW, the module does work "properly" in node.
The text was updated successfully, but these errors were encountered: