All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prompto.internet.HtmlEncoder.js Maven / Gradle / Ivy

There is a newer version: 0.1.57
Show newest version
/*!
 * node-htmlencode - Wrapped version of http://www.strictly-software.com/htmlencode
 * Copyright(c) 2013 Dan MacTough 
 * All rights reserved.
 */

var htmlencode = require('./Encoder')
  , extend = require('util')._extend;

var Encoder = function (type) {
  if (type) this.EncodeType = type;
  return this;
};
extend(Encoder.prototype, htmlencode);

var it = new Encoder();

Object.defineProperty(module.exports, 'EncodeType', {
  enumerable: true,
  get: function () { return it.EncodeType; },
  set: function (val) { return it.EncodeType = val; }
});
[ 'HTML2Numerical',
  'NumericalToHTML',
  'numEncode',
  'htmlDecode',
  'htmlEncode',
  'XSSEncode',
  'hasEncoded',
  'stripUnicode',
  'correctEncoding'].forEach(function (method) {
  module.exports[method] = it[method].bind(it);
});
module.exports.Encoder = Encoder;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy