7 lines
88 B
JavaScript
7 lines
88 B
JavaScript
|
"use strict";
|
||
|
|
||
|
exports._ = exports._throw = _throw;
|
||
|
function _throw(e) {
|
||
|
throw e;
|
||
|
}
|