Options
All
  • Public
  • Public/Protected
  • All
Menu

gtools

license REPO SIZE CODE SIZE Build Status Coverage Status Test Coverage Code Climate GitHub version npm version Dependency Status devDependencies Status HitCount

GTools

NPM

Documentation

Contents

Installation

NodeJS

run npm install gtools

import { ArrayUtils } from "gtools";

const min = ArrayUtils.min([1, 2, 3]);

Browser

<!DOCTYPE html>
<html>
    <head>
        <title>Test</title>
        <script type="text/javascript" src="gtools.web.js"></script>
    </head>
    <body>
        <script type="text/javascript">
        
        const min = G.array.min([1, 2, 3]);
        </script>
    </body>
</html>

List of methods

TODO ##Implements https://github.com/G43riko/JavaUtils/blob/master/GLib2/src/main/java/org/utils/QuadIterator.java https://github.com/G43riko/JavaUtils/tree/master/GLib2/src/main/java/org/utils/noises https://github.com/G43riko/JavaUtils/blob/master/GLib2/src/test/java/org/glib2/math/Bresenhams3D.java https://github.com/G43riko/JavaUtils/blob/master/GLib2/src/main/java/org/utils/GeometryUtils.java

Structure of src directory

Release steps

  1. change version in package.json
  2. run all tests with npm test
  3. run npm run release
  4. run npm publish
  5. commit and push data to github
  6. wait for the build to complete on travis and check for success
  7. create new release on github

Generated using TypeDoc