string.js
2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*!
* Stylus - String
* Copyright (c) Automattic <developer.wordpress.com>
* MIT Licensed
*/
/**
* Module dependencies.
*/
var Node = require('./node')
, sprintf = require('../functions').s
, utils = require('../utils')
, nodes = require('./');
/**
* Initialize a new `String` with the given `val`.
*
* @param {String} val
* @param {String} quote
* @api public
*/
var String = module.exports = function String(val, quote){
Node.call(this);
this.val = val;
this.string = val;
this.prefixed = false;
if (typeof quote !== 'string') {
this.quote = "'";
} else {
this.quote = quote;
}
};
/**
* Inherit from `Node.prototype`.
*/
String.prototype.__proto__ = Node.prototype;
/**
* Return quoted string.
*
* @return {String}
* @api public
*/
String.prototype.toString = function(){
return this.quote + this.val + this.quote;
};
/**
* Return a clone of this node.
*
* @return {Node}
* @api public
*/
String.prototype.clone = function(){
var clone = new String(this.val, this.quote);
clone.lineno = this.lineno;
clone.column = this.column;
clone.filename = this.filename;
return clone;
};
/**
* Return a JSON representation of this node.
*
* @return {Object}
* @api public
*/
String.prototype.toJSON = function(){
return {
__type: 'String',
val: this.val,
quote: this.quote,
lineno: this.lineno,
column: this.column,
filename: this.filename
};
};
/**
* Return Boolean based on the length of this string.
*
* @return {Boolean}
* @api public
*/
String.prototype.toBoolean = function(){
return nodes.Boolean(this.val.length);
};
/**
* Coerce `other` to a string.
*
* @param {Node} other
* @return {String}
* @api public
*/
String.prototype.coerce = function(other){
switch (other.nodeName) {
case 'string':
return other;
case 'expression':
return new String(other.nodes.map(function(node){
return this.coerce(node).val;
}, this).join(' '));
default:
return new String(other.toString());
}
};
/**
* Operate on `right` with the given `op`.
*
* @param {String} op
* @param {Node} right
* @return {Node}
* @api public
*/
String.prototype.operate = function(op, right){
switch (op) {
case '%':
var expr = new nodes.Expression;
expr.push(this);
// constructargs
var args = 'expression' == right.nodeName
? utils.unwrap(right).nodes
: [right];
// apply
return sprintf.apply(null, [expr].concat(args));
case '+':
var expr = new nodes.Expression;
expr.push(new String(this.val + this.coerce(right).val));
return expr;
default:
return Node.prototype.operate.call(this, op, right);
}
};