mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-26 11:44: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);
|
|
};
|