l0bsterssg

node.js static responsive blog post generator
Log | Files | Refs | README

str.js (189B)


      1 'use strict';
      2 
      3 var Type = require('../type');
      4 
      5 module.exports = new Type('tag:yaml.org,2002:str', {
      6   kind: 'scalar',
      7   construct: function (data) { return data !== null ? data : ''; }
      8 });