Test if a node is a NumericOrStringLikeLiteral.
Whether the given node appears to be a NumericOrStringLikeLiteral.
declare const node: ts.Node;if (isNumericOrStringLikeLiteral(node)) { // ...} Copy
declare const node: ts.Node;if (isNumericOrStringLikeLiteral(node)) { // ...}
Test if a node is a NumericOrStringLikeLiteral.