b8b6294f95
Because it weights much less that than the browserify's one.
8 lines
142 B
JavaScript
8 lines
142 B
JavaScript
"use strict";
|
|
|
|
exports.assert = function(condition, message) {
|
|
if (!condition) {
|
|
throw new Error(message || "Assertion failed");
|
|
}
|
|
};
|