How to use the quote function from underscore.string

Find comprehensive JavaScript underscore.string.quote code examples handpicked from public code repositorys.

982
983
984
985
986
987
988
989
990
991
s.rstrip    = s.rtrim;
s.center    = s.lrpad;
s.rjust     = s.lpad;
s.ljust     = s.rpad;
s.contains  = s.include;
s.q         = s.quote;
s.toBool    = s.toBoolean;
s.camelcase = s.camelize;
s.mapChars  = s.map;

fork icon0
star icon6
watch icon0

31
32
33
34
35
36
37
38
39
40
},
htmlentities: function(value, args) {
	return _string.escapeHTML(value);
},
escapejs: function(value) {
	return _string.quote(value);
},
stripText: function(value, args) {
	return _string.truncate(_string.stripTags(value), args[0] || 0, '...');
},
fork icon0
star icon1
watch icon0

+ 2 other calls in file

58
59
60
61
62
63
64
65
66
67
}else if (args.projects && args.projects.length > 0) {
    paramsArray.push(_s.sprintf("project in (%s)", args.projects.join(",")));
}
args.priority && paramsArray.push(_s.sprintf("priority in (%s)", args.priority));
args.stream && paramsArray.push(_s.sprintf("labels in (%s)", args.stream));
args.duedate && paramsArray.push(_s.sprintf("(duedate <= %s or duedate is empty)", _s.quote(dateformat(args.duedate,"yyyy/mm/dd"),"'")));
args.created && paramsArray.push(_s.sprintf("created => %s", _s.quote(dateformat(args.created,"yyyy/mm/dd"),"'")));
args.status && paramsArray.push(_s.sprintf("status in (%s)", _.map(args.status, (stat) => {
    return _s.quote(stat, "'");
}).join(",")));
fork icon1
star icon0
watch icon0

+ 7 other calls in file

378
379
380
381
382
383
384
385
386
387
prepend(str) {
  return new NyxString(v.insert(this.__value__, str.__value__, 0));
}

quote(quoteChar) {
  const res = s.quote(this.__value__, quoteChar.__value__);
  return new NyxString(res);
}

remove(str) {
fork icon0
star icon0
watch icon0

+ 15 other calls in file