Giter VIP home page Giter VIP logo

utils.js's Introduction

npm downloads size language commit license

utils.js

JavaScript utility library for web and nodejs development

Installation

npm i @andrewcaires/utils.js

Api

EventEmitter

Class for custom events

import { EventEmitter } from '@andrewcaires/utils.js';

const emitter = new EventEmitter();

// OR

class CustomEvent extends EventEmitter {}

const custom = new CustomEvent();
  • EventEmitter.on Adds the listener function to the end of the listeners array for the event named
const cb = (data) => {

  console.log(data);
}

emitter.on('event', cb);
  • EventEmitter.once Adds the listener function to the end of the listeners array for the event named. The next time event is triggered, this listener is removed
const cb = (data) => {

  console.log(data);
}

emitter.once('event', cb);
  • EventEmitter.off Removes the specified listener from the listener array for the event named
emitter.off('event', cb);
  • EventEmitter.emit Synchronously calls each of the listeners registered for the event named
emitter.emit('event', 'on emit event');
// > on emit event

type

Determine the internal JavaScript [[Class]] of an object

import { isArray, isBoolean, isFunction, isNumber, isObject, isString, isFloat, isInteger, isNull, isUndefined, isValid, type } from '@andrewcaires/utils.js';
  • isArray Finds whether a variable is an array
isArray([]) // > true
  • isBoolean Finds out whether a variable is a boolean
isBoolean(true) // > true
isBoolean(false) // > true
  • isDef Find out if a variable has been defined
isDef(any) // > true
  • isFunction Find whether the type of a variable is function
isFunction(function() {}) // > true
  • isNumber Finds whether a variable is an number
isNumber(1) // > true
isNumber(1.7) // > true
  • isObject Finds whether a variable is an object
isObject({}) // > true
  • isString Find whether the type of a variable is string
isString('') // > true
  • isFloat Finds whether the type of a variable is float
isFloat(1.7) // > true
  • isInteger Find whether the type of a variable is integer
isInteger(1) // > true
  • isNull Finds whether a variable is null
isNull(null) // > true
  • isUndefined Finds whether a variable is undefined
isUndefined(undefined) // > true
  • type Get the type of a variable
type([]); // => 'array'

type(true); // => 'boolean'
type(false); // => 'boolean'

type(frunction() {}); // => 'function'

type(1); // => 'number'
type(1.7); // => 'number'

type({}); // => 'object'

type(''); // => 'string'
type('test'); // => 'string'

type(); // => 'null'
type(null); // => 'null'

Links

License

utils.js's People

Contributors

andrewcaires avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.