mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-27 12:14:45 +01:00
9 lines
240 B
JavaScript
9 lines
240 B
JavaScript
'use strict';
|
|
|
|
var CompletionRecord = require('./CompletionRecord');
|
|
|
|
// https://262.ecma-international.org/9.0/#sec-throwcompletion
|
|
|
|
module.exports = function ThrowCompletion(argument) {
|
|
return new CompletionRecord('throw', argument);
|
|
};
|