mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 05:27:15 -04:00
20 lines
404 B
JavaScript
20 lines
404 B
JavaScript
|
/* @flow */
|
||
|
"use strict"
|
||
|
|
||
|
const keywordSets = require("../reference/keywordSets")
|
||
|
const _ = require("lodash")
|
||
|
|
||
|
/**
|
||
|
* Check value is a custom ident
|
||
|
*/
|
||
|
|
||
|
module.exports = function (value/*: string*/)/*: boolean*/ {
|
||
|
const valueLowerCase = value.toLowerCase()
|
||
|
|
||
|
if (keywordSets.counterIncrementKeywords.has(valueLowerCase) || _.isFinite(parseInt(valueLowerCase))) {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
return true
|
||
|
}
|