| 1 2 3 4 5 6 7 8 9 10 11 | 1 4 1 4 | //Opening this on windows will likely bork the characters
exports.__defineGetter__('good', function() {
return ((process.platform === 'win32') ? 'OK' : "✔");
});
exports.__defineGetter__('bad', function() {
return ((process.platform === 'win32') ? 'X' : "✖");
});
|