Skip to main content
Glama
RegExpCreate.js•643 B
'use strict'; var GetIntrinsic = require('get-intrinsic'); var $RegExp = GetIntrinsic('%RegExp%'); // var RegExpAlloc = require('./RegExpAlloc'); // var RegExpInitialize = require('./RegExpInitialize'); var ToString = require('./ToString'); // https://262.ecma-international.org/6.0/#sec-regexpcreate module.exports = function RegExpCreate(P, F) { // var obj = RegExpAlloc($RegExp); // return RegExpInitialize(obj, P, F); // covers spec mechanics; bypass regex brand checking var pattern = typeof P === 'undefined' ? '' : ToString(P); var flags = typeof F === 'undefined' ? '' : ToString(F); return new $RegExp(pattern, flags); };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/guangxiangdebizi/PPT-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server