UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

39 lines (34 loc) 1.3 kB
/** * @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper * @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos * @license BSD-3-Clause (see LICENSE in the root directory of this source tree) */ import {Enum} from '../Enum'; export class SignStyle extends Enum{ /** * Parse helper. * * @param positive true if positive sign parsed, false for negative sign * @param strict true if strict, false if lenient * @param fixedWidth true if fixed width, false if not * @return true if valid */ parse(positive, strict, fixedWidth){ switch (this) { case SignStyle.NORMAL: // NORMAL // valid if negative or (positive and lenient) return !positive || !strict; case SignStyle.ALWAYS: // ALWAYS case SignStyle.EXCEEDS_PAD: // EXCEEDS_PAD return true; default: // valid if lenient and not fixed width return !strict && !fixedWidth; } } } SignStyle.NORMAL = new SignStyle('NORMAL'); SignStyle.NEVER = new SignStyle('NEVER'); SignStyle.ALWAYS = new SignStyle('ALWAYS'); SignStyle.EXCEEDS_PAD = new SignStyle('EXCEEDS_PAD'); SignStyle.NOT_NEGATIVE = new SignStyle('NOT_NEGATIVE');