HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/share/nodejs/tap-yaml/lib/types/
Upload File :
Current File : //proc/self/root/usr/share/nodejs/tap-yaml/lib/types/regexp.js
const {stringifyString} = require('yaml/util')

module.exports = {
  identify: value => value instanceof RegExp,
  tag: '!re',
  resolve (doc, cst) {
    const match = cst.strValue.match(/^\/([\s\S]+)\/([gimuy]*)$/)
    if (!match)
      throw new Error(`Invalid Regular Expression: ${cst.strValue}`)
    return new RegExp(match[1], match[2])
  },
  stringify (item, ctx, onComment, onChompKeep) {
    const value = item.value.toString()
    return stringifyString({ value }, ctx, onComment, onChompKeep)
  }
}