Home
last modified time | relevance | path

Searched refs:hasUnicode (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/npm/node_modules/gauge/lib/
Dtheme-set.js48 var hasUnicode = !!opts.hasUnicode
53 this.defaults[platform][hasUnicode][hasColor] = name
62 var hasUnicode = !!opts.hasUnicode
65 throw this.newMissingDefaultThemeError(platformName, hasUnicode, hasColor)
67 if (!platform[hasUnicode][hasColor]) {
68 if (hasUnicode && hasColor && platform[!hasUnicode][hasColor]) {
69 hasUnicode = false
70 } else if (hasUnicode && hasColor && platform[hasUnicode][!hasColor]) {
72 } else if (hasUnicode && hasColor && platform[!hasUnicode][!hasColor]) {
73 hasUnicode = false
[all …]
Dthemes.js53 themes.setDefault({ platform: 'darwin', hasUnicode: true }, 'brailleSpinner') property
54 themes.setDefault({ platform: 'darwin', hasUnicode: true, hasColor: true }, 'colorBrailleSpinner') property
55 themes.setDefault({ platform: 'linux', hasUnicode: true }, 'brailleSpinner') property
56 themes.setDefault({ platform: 'linux', hasUnicode: true, hasColor: true }, 'colorBrailleSpinner') property
Dindex.js3 var hasUnicode = require('has-unicode') variable
94 Object.keys(theme).length === 0 || theme.hasUnicode != null || theme.hasColor != null
96 var useUnicode = theme.hasUnicode == null ? hasUnicode() : theme.hasUnicode
99 hasUnicode: useUnicode, property
/third_party/node/deps/npm/node_modules/npmlog/lib/
Dlog.js33 this.gauge.setTheme({ hasColor: colorEnabled, hasUnicode: unicodeEnabled }) property
37 this.gauge.setTheme({ hasColor: colorEnabled, hasUnicode: unicodeEnabled }) property
65 this.gauge.setTheme({ hasColor: this.useColor(), hasUnicode: unicodeEnabled }) property
70 this.gauge.setTheme({ hasColor: this.useColor(), hasUnicode: unicodeEnabled }) property
/third_party/node/deps/npm/test/lib/utils/
Ddisplay.js32 t.equal(log.gauge._theme.hasUnicode, true)
35 t.equal(log.gauge._theme.hasUnicode, false)
/third_party/node/deps/npm/node_modules/has-unicode/
Dindex.js4 var hasUnicode = module.exports = function () { variable