Giter VIP home page Giter VIP logo

modez's Introduction

Modez

Indispensable library inspired by Lodash, give your the possibility to write code simpler and more functional.

const modez = require("modez")

forOne

Iterate through a given array like forEach, but only first element.

myArray = [1,2,3]
modez.forOne(myArray, (item) => {
    console.log(item) // only 1 will be printed
})

createFunction

Simpler way to create a function

const myFunction = modez.createFunction((params) => {console.log(params)})
myFunction("hello")

addThirtyNine

Simpler and more functional way to add 39 to a number.

let nbr = 20
modez.addThirtyNine(nbr, (result) => {
    console.log(result) // result == 59
}) 

ifFalse

Simpler and more functional way to check if a condition is false with else statement

const condition = false 
modez.ifFalse(condition, () => {
    console.log("condition is false")
}).else(() => {
    console.log("condition is true")
})

executeFunction

Simpler solution to execute a given function

const myFunction = (foo) => {
    console.log(`Welcome ${foo} !`) //welcome chien !
}
modez.executeFunction(myFunction, "chien")

createListFromArray

Given an array, return a list of the elements of it

const myArray = [1, 2, 3]
const myList = modez.createListFromArray(myArray)

executeFunctionAsync

Simpler solution to execute a given function asynchronously

const myFunction = (foo) => {
    console.log(`Welcome ${foo} !`) //welcome chien !
}
modez.executeFunctionAsync(myFunction, "chien")
console.log("I am first") // first log to be printed

assigneValue

Simpler and more functional way to assign a value to a variable

let myNbr = modez.assignValue(42)
console.log(myNbr) // 42

safeExecute

Execute the first function given, if it fail, catch the error in the seconde function

modez.safeExecute(() => {/* try */}, (error) => {/* error */})

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.