Skip to main content
The Deno 2 Release Candidate is here
Learn more

xtend

Extend JS standard library with xtend

Deno

Usage

  • xtend all modules

    import "https://deno.land/x/xtend@v0.2.0/index.js";
  • xtend single module

    import "https://deno.land/x/xtend@v0.2.0/src/array.js";

xtended modules

  • Array
    • sum - returns the sum of all the values in array
    • uniq - returns an array of unique values
    • first - returns the first element in the array
    • last - returns the last element in the array