astro-ghostcms/.pnpm-store/v3/files/37/ce562efcf4b7dd6468ec9990d3a...

10 lines
240 B
Plaintext

'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);
};