UNPKG

bugger-v8-client

Version:
14 lines (10 loc) 262 B
'use strict'; function RemoteRegExp(description) { this.type = 'object'; this.subtype = 'regexp'; this.description = description; } RemoteRegExp.unmarshal = function(raw, reviver) { return new RemoteRegExp(raw.value); } module.exports = RemoteRegExp;