Skip to content

Instantly share code, notes, and snippets.

View mjasnikovs's full-sized avatar

Edgars Mjasnikovs mjasnikovs

View GitHub Profile
@mjasnikovs
mjasnikovs / InputGuard.js
Created September 30, 2019 03:46
Input Guard for Apollo client local state management
import React, {Component} from 'react'
import PropTypes from 'prop-types'
const MAX_INT = 2147483647
const MIN_INT = -2147483648
const isNaturalNumber = input => {
return typeof input === 'number' && input % 1 === 0 && Number.isInteger(input) && input >= 0 && 1 / input !== -Infinity
}
@mjasnikovs
mjasnikovs / cloudSettings
Last active March 31, 2020 06:25
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-07-31T05:45:49.957Z","extensionVersion":"v3.4.1"}