UNPKG

@mkerkstra/jsts-cjs

Version:

A CommonJS fork of JSTS: A JavaScript library of spatial predicates and functions for processing geometry

10 lines (8 loc) 170 B
export default class Character { static isWhitespace(c) { return ((c <= 32 && c >= 0) || c === 127) } static toUpperCase(c) { return c.toUpperCase() } }