Add sh to darwin.sh execution

This commit is contained in:
Shivam Mathur
2019-09-06 23:22:15 +05:30
parent 76bcc07458
commit 1c6748567c
73 changed files with 7573 additions and 104 deletions
+19
View File
@@ -0,0 +1,19 @@
'use strict';
/**
* A `Cancel` is an object that is thrown when an operation is canceled.
*
* @class
* @param {string=} message The message.
*/
function Cancel(message) {
this.message = message;
}
Cancel.prototype.toString = function toString() {
return 'Cancel' + (this.message ? ': ' + this.message : '');
};
Cancel.prototype.__CANCEL__ = true;
module.exports = Cancel;