We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Very strange bug in Mac OS 10.10 iTerm:
require('figures').tick // produce empty symbol
I don't know why this happens, but it fixed with:
Object.keys(symbols).forEach(function(key) { symbols[key] = fromCharCode(symbols[key].charCodeAt(0)); });
Example:
var figures = require('figures'); var patchedFigures = require('../figures'); Object.keys(figures).forEach(function(key) { console.log('"%s" "%s"', patchedFigures[key], figures[key]); }); // see screenshot below
screenshot
The text was updated successfully, but these errors were encountered:
5ad2433
So weird.
Sorry, something went wrong.
See #102: the invisible character was variation selection 15, U+FE0E.
U+FE0E
No branches or pull requests
Very strange bug in Mac OS 10.10 iTerm:
I don't know why this happens, but it fixed with:
Example:
screenshot
The text was updated successfully, but these errors were encountered: