File: str.js

package info (click to toggle)
node-js-yaml 4.1.0%2Bdfsg%2B~4.0.5-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 11,112 kB
  • sloc: javascript: 20,148; makefile: 17; sh: 13
file content (8 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (24)
1
2
3
4
5
6
7
8
'use strict';

var Type = require('../type');

module.exports = new Type('tag:yaml.org,2002:str', {
  kind: 'scalar',
  construct: function (data) { return data !== null ? data : ''; }
});