All Projects → bevry → typechecker

bevry / typechecker

Licence: other
Utilities to get and check variable types (isString, isPlainObject, isRegExp, etc)

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to typechecker

Rezoom.SQL
Statically typechecks a common SQL dialect and translates it to various RDBMS backends
Stars: ✭ 639 (+1352.27%)
Mutual labels:  typechecker
Quell
Quell is an easy-to-use, lightweight JavaScript library providing a client- and server-side caching solution for GraphQL. Use Quell to prevent redundant client-side API requests and to minimize costly server-side response latency.
Stars: ✭ 473 (+975%)
Mutual labels:  client-side
Hangons
Web app to parse and save your Hangouts.json file into a more friendly format.
Stars: ✭ 45 (+2.27%)
Mutual labels:  client-side
alphasql
AlphaSQL provides Integrated Type and Schema Check and Parallelization for SQL file set mainly for BigQuery
Stars: ✭ 35 (-20.45%)
Mutual labels:  typechecker
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
Stars: ✭ 76,718 (+174259.09%)
Mutual labels:  typechecker
Sree
S3 client for human beings
Stars: ✭ 55 (+25%)
Mutual labels:  client-side
Final Form
🏁 Framework agnostic, high performance, subscription-based form state management
Stars: ✭ 2,787 (+6234.09%)
Mutual labels:  client-side
Discord-Console-hacks
A collection of JavaScript Codes I've made to enhance the User Experience of Discord and some other Discord related stuff
Stars: ✭ 353 (+702.27%)
Mutual labels:  client-side
AxleJS
Fetch, supercharged.
Stars: ✭ 28 (-36.36%)
Mutual labels:  client-side
jquery-smarty
jQuery Smarty Plugin (jQSmarty) is a port of the Smarty Templating Engine to Javascript/jQuery, offering a familiar client-side templating solution
Stars: ✭ 18 (-59.09%)
Mutual labels:  client-side
Pytype
A static type analyzer for Python code
Stars: ✭ 3,545 (+7956.82%)
Mutual labels:  typechecker
Mypy
Optional static typing for Python
Stars: ✭ 11,995 (+27161.36%)
Mutual labels:  typechecker
LibManUal
No description or website provided.
Stars: ✭ 18 (-59.09%)
Mutual labels:  client-side
typesentry
Python 2.7 & 3.5+ runtime type-checker
Stars: ✭ 19 (-56.82%)
Mutual labels:  typechecker
json-as-xlsx
Create excel from json npm package
Stars: ✭ 103 (+134.09%)
Mutual labels:  client-side
sig
Validate Method Arguments & Results in Ruby
Stars: ✭ 54 (+22.73%)
Mutual labels:  typechecker
Swadeshi
Implementing a Web Based solution through which farmers can participate in a commodity exchange market
Stars: ✭ 21 (-52.27%)
Mutual labels:  client-side
Reddit-Embed
Embed any reddit post onto your website!
Stars: ✭ 15 (-65.91%)
Mutual labels:  client-side
hack-cs-tools
client side (C-S) penetration toolkit
Stars: ✭ 111 (+152.27%)
Mutual labels:  client-side
PENDOWN
Text-to-HTML conversion tool for web writers, with integrated styling and tag customization.
Stars: ✭ 33 (-25%)
Mutual labels:  client-side

TypeChecker

Status of the GitHub Workflow: bevry NPM version NPM downloads Dependency Status Dev Dependency Status
GitHub Sponsors donate button Patreon donate button Flattr donate button Liberapay donate button Buy Me A Coffee donate button Open Collective donate button crypto donate button PayPal donate button Wishlist browse button

Utilities to get and check variable types (isString, isPlainObject, isRegExp, etc)

Why?

Why should I use this instead of say instanceof?

Under certain circumstances instanceof may not return the correct results. This occurs with node's vm module especially, and circumstances where an object's prototype has been dereferenced from the original. As such, for basic == and === checks (like a === null), you're fine not using this, but for checks when you would have done instanceof (like err instanceof Error), you should try to use this instead. Plus things like isPlainObject are darn useful!

Usage

Complete API Documentation.

Install

npm

  • Install: npm install --save typechecker
  • Import: import * as pkg from ('typechecker')
  • Require: const pkg = require('typechecker')

Deno

import * as pkg from 'https://unpkg.com/typechecker@^7.18.0/edition-deno/index.ts'

Skypack

<script type="module">
    import * as pkg from '//cdn.skypack.dev/typechecker@^7.18.0'
</script>

unpkg

<script type="module">
    import * as pkg from '//unpkg.com/typechecker@^7.18.0'
</script>

jspm

<script type="module">
    import * as pkg from '//dev.jspm.io/[email protected]'
</script>

Editions

This package is published with the following editions:

  • typechecker/source/index.ts is TypeScript source code with Import for modules
  • typechecker/edition-browsers/index.js is TypeScript compiled against ES2020 for web browsers with Import for modules
  • typechecker aliases typechecker/edition-es2019/index.js
  • typechecker/edition-es2019/index.js is TypeScript compiled against ES2019 for Node.js 10 || 12 || 14 || 16 with Require for modules
  • typechecker/edition-es2019-esm/index.js is TypeScript compiled against ES2019 for Node.js 12 || 14 || 16 with Import for modules
  • typechecker/edition-deno/index.ts is TypeScript source code made to be compatible with Deno

History

Discover the release history by heading on over to the HISTORY.md file.

Contribute

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Backers

Maintainers

These amazing people are maintaining this project:

Sponsors

No sponsors yet! Will you be the first?

GitHub Sponsors donate button Patreon donate button Flattr donate button Liberapay donate button Buy Me A Coffee donate button Open Collective donate button crypto donate button PayPal donate button Wishlist browse button

Contributors

These amazing people have contributed code to this project:

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

License

Unless stated otherwise all works are:

and licensed under:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].