Sha256: 214c12a416acf0d941eb8c38b5032a59794aaa680758fbf088d7d23930d0f529

Contents?: true

Size: 229 Bytes

Versions: 7

Compression:

Stored size: 229 Bytes

Contents

// Build out our basic SafeString type
function SafeString(string) {
  this.string = string;
}

SafeString.prototype.toString = SafeString.prototype.toHTML = function() {
  return '' + this.string;
};

export default SafeString;

Version data entries

7 entries across 7 versions & 4 rubygems

Version Path
pcp-server-ruby-sdk-0.0.6 node_modules/handlebars/lib/handlebars/safe-string.js
pcp-server-ruby-sdk-0.1.0 node_modules/handlebars/lib/handlebars/safe-string.js
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/handlebars/lib/handlebars/safe-string.js
locomotivecms-3.4.0 app/javascript/node_modules/handlebars/lib/handlebars/safe-string.js
lanes-0.8.0 node_modules/handlebars/lib/handlebars/safe-string.js
eslint_node_modules-1.6.0.1 vendor/node_modules/eslint/node_modules/handlebars/lib/handlebars/safe-string.js
eslint_node_modules-1.6.0 vendor/node_modules/eslint/node_modules/handlebars/lib/handlebars/safe-string.js