Lines Matching refs:output

7549     var output = this._calendar[key] || this._calendar['sameElse'];
7550 return isFunction(output) ? output.call(mom, now) : output;
7608 var output = this._relativeTime[string];
7609 return (isFunction(output)) ?
7610 output(number, withoutSuffix, string, isFuture) :
7611 output.replace(/%d/i, number);
7614 function pastFuture (diff, output) {
7616 return isFunction(format) ? format(output) : format.replace(/%s/i, output);
10256 …var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[f…
10258 return this.format(output || this.localeData().calendar(format, this, createLocal(now)));
10323 delta, output;
10340 output = monthDiff(this, that);
10342 output = output / 3;
10344 output = output / 12;
10348 output = units === 'second' ? delta / 1e3 : // 1000
10355 return asFloat ? output : absFloor(output);
10429 var output = formatMoment(this, inputString);
10430 return this.localeData().postformat(output);
11157 output = (toInt(number % 100 / 10) === 1) ? 'th' :
11161 return number + output;
11430 var output = relativeTime$1(this, !withSuffix, locale);
11433 output = locale.pastFuture(+this, output);
11436 return locale.postformat(output);
12402 output;
12406 output = toFixedLargeSmall(value, precision);
12408 if (output.charAt(0) === '-' && +output >= 0) {
12409 output = output.substr(1); // chop off the '-'
12414 output = (roundingFunction(value + 'e+' + precision) / power).toFixed(precision);
12419 output = output.replace(optionalsRegExp, '');
12422 return output;
12431 var output,
12436output = formatCurrency(n, cultures[currentCulture].currency.symbol, format, roundingFunction);
12438 output = formatPercentage(n, format, roundingFunction);
12440 output = formatTime(n, format);
12442 output = formatNumber(n._value, format, roundingFunction);
12446 return output;
12522 output;
12548 output = formatNumber(n._value, format, roundingFunction, decimalSeparator);
12554 if (output.indexOf(')') > -1) {
12555 output = output.split('');
12556 output.splice(-1, 0, space + currencySymbol);
12557 output = output.join('');
12559 output = output + space + currencySymbol;
12565 if (output.indexOf('(') > -1 || output.indexOf('-') > -1) {
12566 output = output.split('');
12569 output.splice(spliceIndex, 0, currencySymbol + space);
12570 output = output.join('');
12572 output = currencySymbol + space + output;
12581 … if (output.indexOf('(') > -1 || output.indexOf('+') > -1 || output.indexOf('-') > -1) {
12582 output = output.split('');
12588 output.splice(spliceIndex, 0, currencySymbol + space);
12589 output = output.join('');
12591 output = currencySymbol + space + output;
12594 if (output.indexOf(')') > -1) {
12595 output = output.split('');
12596 output.splice(-1, 0, space + currencySymbol);
12597 output = output.join('');
12599 output = output + space + currencySymbol;
12604 return output;
12613 output,
12624 output = formatNumber(value, format, roundingFunction);
12626 if (output.indexOf(')') > -1) {
12627 output = output.split('');
12628 output.splice(-1, 0, space + '%');
12629 output = output.join('');
12631 output = output + space + '%';
12634 return output;
17604 output = [],
17610 output.push([]);
17613 output[j].push(input[i][j]);
17617 return output;
22174 var output = [];
22190 output.push(string.slice(lastLastIndex, match.index));
22196 … if (match[LENGTH] > 1 && match.index < string[LENGTH]) $push.apply(output, match.slice(1));
22199 if (output[LENGTH] >= splitLimit) break;
22204 if (lastLength || !separatorCopy.test('')) output.push('');
22205 } else output.push(string.slice(lastLastIndex));
22206 return output[LENGTH] > splitLimit ? output.slice(0, splitLimit) : output;
31450 var output = void 0;
31460 output = instance[action].apply(instance, args);
31470 return output;
34060 output = [],
34087 output.push(row);
34091 return output;