UNPKG

odata-client

Version:
18 lines (12 loc) 211 B
'use strict'; const escape = require('./escape'); var Literal = function(s) { this.s = s; return this; }; Literal.prototype.toString = function() { return escape(this.s); }; module.exports = Literal;