๐พstr.isPunctuator
JS โฉ primitives โฉ String โฉ custom members โฉ .isPunctuator
replit๏ผpunctuators
// ๐ String_ext.js
// punctuators
const punctuators = [
'?.', '{', '}', '(', ')', '[',
']', '.', '...', ';', '', '',
'<', '>', '<=', '>=', '==', '!=',
'===', '!==', '+', '-', '*', '/',
'%', '**', '++', '--', '<<', '>>',
'>>>', '&', '|', '^', '!', '~',
'&&', '||', '??', '?', ':', '=',
'+=', '-=', '*=', '/=', '%=', '**=',
'<<=', '>>=', '>>>=', '&=', '|=', '^=',
'&&=', '||=', '??=', '=>'
];
// getters for String
Object.defineProperties(String.prototype, {
// ๐ธ str.isPunctuator
isPunctuator: {
get() { return punctuators.includes(this.valueOf()) }
// ^^^^^^^^^
// ๐งจ ้ทๅ
// -----------------------------------------------
// get() { return keywords.includes(this) }
// ^^^^
// โ `this` will be "wrapped" in a `String` object,
// hence `false` is "always" returned.
},
});
// export
module.exports = {punctuators};
replit๏ผpunctuators
// import String extensions
const _StringExt = require('./String_ext.js');
'->'.isPunctuator, // false
'=>'.isPunctuator, // true
Last updated