Sha256: 6f6d3a86c6575773c1e22f54c304832dd9d7aaff2981ae290fa03702795c10c4
Contents?: true
Size: 478 Bytes
Versions: 8
Compression:
Stored size: 478 Bytes
Contents
"use strict"; const CharacterDataImpl = require("./CharacterData-impl").implementation; const NODE_TYPE = require("../node-type"); class ProcessingInstructionImpl extends CharacterDataImpl { constructor(args, privateData) { super(args, privateData); this.nodeType = NODE_TYPE.PROCESSING_INSTRUCTION_NODE; this._target = privateData.target; } get target() { return this._target; } } module.exports = { implementation: ProcessingInstructionImpl };
Version data entries
8 entries across 5 versions & 4 rubygems