Giter Site home page Giter Site logo

my-js-lib's Introduction

My JS Lib

Codeship Status for zgulde/my-js-lib

A bunch of extensions to the native javascript prototypes.

Mostly a project for my own learning, but who knows? Maybe someone will find it useful.

You can play with it in the browser here.

Setup

After cloning,

npm install
./install-hooks.sh

To install a pre-commit hook that runs the tests and lints the project.

Development

Run tests

npm test

Build + minify

npm run build

Usage

Documentation is built into the tests

Array.prototype
  .first([n]) -- returns the first n elements
    ✓ [1, 2, 3].first() === 1 (2ms)
    ✓ [1, 2, 3].first(1) === [1] (1ms)
    ✓ [1, 2, 3].first(2) === [1, 2]
    ✓ [1, 2, 3].first(100) === [1, 2, 3]
    ✓ [].first() === undefined
    ✓ [].first(1) === []
    ✓ [].first(10) === []
  .rest() -- returns everything but the first element
    ✓ [1, 2, 3, 4, 5].rest() === [2, 3, 4, 5]
    ✓ [1].rest() === []
    ✓ [].rest() === [] (1ms)
  .last([n]) -- returns the last n elements
    ✓ [1, 2, 3, 4, 5].last() === 5
    ✓ [1, 2, 3, 4, 5].last(1) === [5]
    ✓ [1, 2, 3, 4, 5].last(2) === [4, 5]
    ✓ [1, 2, 3].last(100) === [1, 2, 3]
    ✓ [].last() === undefined
    ✓ [].last(1) === [] -- [].last(100) === [] (1ms)
  .sample([n]) -- returns n random elements
    ✓ returns a random element when passed no args (3ms)
    ✓ returns an array of randomly selected items when passed a number
  .chunk(n) -- breaks an array in n-sized chunks
    ✓ [1, 2, 3].chunk(1) === [[1], [2], [3]] (1ms)
    ✓ [1, 2, 3, 4, 5, 6].chunk(2) === [[1, 2], [3, 4], [5, 6]]
    ✓ [1, 2, 3, 4, 5, 6].chunk(5) === [[1, 2, 3, 4, 5], [6]]
    ✓ [1, 2, 3].chunk(4) === [[1, 2, 3]]
  .unique() -- removes duplicate values
    ✓ [1, 2, 3, 1, 2, 3].unique() === [1, 2, 3]
    ✓ [5, 7, 9].unique() === [5, 7, 9]
  .without(ele1[, ele2[, ...]]) -- removes element(s) from an array
    ✓ [1, 2, 3, 4, 5].without(3) === [1, 2, 4, 5]
    ✓ [1, 2, 3, 4, 5].without(2, 3, 4) === [1, 5] (1ms)
    ✓ [1, 2, 3, 4, 5].without(200) === [1, 2, 3, 4, 5]
  .flatten() -- flattens an array
    ✓ [[1, 2], [3, 4], [5]].flatten() === [1, 2, 3, 4, 5]
    ✓ [[1, [2, [3, [4, [5]]]]]].flatten() === [1, 2, 3, 4, 5]
    ✓ [1, 2, 3, 4, 5].flatten() === [1, 2, 3, 4, 5]
  .dropIf(fn) -- the opposite of .filter()
    ✓ [1, 2, 3, 4, 5].dropIf(n => n === 1) === [2, 3, 4, 5]
    ✓ [1, 2, 3, 4, 5].dropIf((n, i) => n == 3 || i == 1) === [1, 4, 5] (2ms)
  groupBy(keyFn) -- transform collection into a map
    ✓ [1, 2, 3, 4].groupBy(n => n % 2 == 0 ? "even" : "odd") === {odd: [1, 3], even: [2, 4]}
  reduceBy(keyFn, reducingFn) -- group by, then transform each value
    ✓ [1, 2, 3, 4].reduceBy(n => n % 2 == 0 ? "even" : "odd", xs => xs.reduce((x, y) => x + y)) (1ms)

Number.prototype
  .isOdd() and .isEven()
    ✓ (57).isOdd() === true
    ✓ (42).isOdd() === false (1ms)
    ✓ (42).isEven() === true
    ✓ (57).isEven() === false
  .to(end[, step]) -- range function
    ✓ (10).to(1) === []
    ✓ (5).to(5) === []
    ✓ (1).to(10) === [1, 2, 3, 4, 5, 6, 7, 8, 9] (1ms)
    ✓ (-3).to(3) === [-3, -2, -1, 0, 1, 2]
    ✓ (1).to(10, 2) === [1, 3, 5, 7, 9]
    ✓ (1).to(5, 0) === []
    ✓ (1).to(5, -1) === []
    ✓ (1).to(5, 10) === [1]
    ✓ (0).to(0.3, 0.1) === [0, 0.1, 0.2]
  .times(cb) -- repeatedly run a function
    ✓ (5).times(cb) -- cb is called 5 times (1ms)
    ✓ passes the number of the iteration to the callback
  .fizzbuzz() -- do fizzbuzz for one number
    ✓ (1).fizzbuzz() === 1
    ✓ (2).fizzbuzz() === 2 (2ms)
    ✓ (3).fizzbuzz() === "fizz"
    ✓ (4).fizzbuzz() === 4 (1ms)
    ✓ (5).fizzbuzz() === "buzz"
    ✓ (6).fizzbuzz() === "fizz"
    ✓ (7).fizzbuzz() === 7
    ✓ (8).fizzbuzz() === 8
    ✓ (9).fizzbuzz() === "fizz"
    ✓ (10).fizzbuzz() === "buzz"
    ✓ (11).fizzbuzz() === 11
    ✓ (12).fizzbuzz() === "fizz"
    ✓ (13).fizzbuzz() === 13 (1ms)
    ✓ (14).fizzbuzz() === 14
    ✓ (15).fizzbuzz() === "fizzbuzz"

String.prototype
  .chars()
    ✓ "qwerty".chars() === ["q", "w", "e", "r", "t", "y"]
  .capitalize() -- uppercases the first letter
    ✓ "asdf".capitalize() === "Asdf" (1ms)
    ✓ "ABC".capitalize() === "ABC"
    ✓ "123abc".capitalize() === "123abc"
  .lines() -- splits a string by newlines
    ✓ "line one\nline two\nline three".lines() === ["line one", "line two", "line three"]
  .reverse() -- reverses a string
    ✓ "abc".reverse() === "cba"
  .without(str1[, str2[, ...]]) -- removes instances of given string(s)
    ✓ "abcabcabc".without("bc") === "aaa" (1ms)
    ✓ "mary had a little lamb, a little lamb, a little lamb".without("little", "lamb") === "mary had a  , a  , a  "
    ✓ "abc".without("d") === "abc"

To produce the above output yourself:

npm run test -- --verbose

my-js-lib's People

Contributors

zgulde avatar

Stargazers

Doug avatar

Watchers

James Cloos avatar  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.