plotly.js
Version:
The open source javascript graphing library that powers plotly
16 lines (12 loc) • 361 B
JavaScript
var constants = require('./constants');
exports.isOpenSymbol = function(symbol) {
return (typeof symbol === 'string') ?
constants.OPEN_RE.test(symbol) :
symbol % 200 > 100;
};
exports.isDotSymbol = function(symbol) {
return (typeof symbol === 'string') ?
constants.DOT_RE.test(symbol) :
symbol > 200;
};
;