1.0.4 • Published 8 years ago

unity-utils v1.0.4

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

Unity Utils

Travis-CI Coverage Status npm version Scrutinizer Deps Deps-Dev Dependency Status

Useful utility functions for the Unity team.

Table of Contents

Installation

npm i --save unity-utils

API

uri

URI utilities.

join([arg1, arg2, ...])

Deafult: '/'

Returns: {String}

Joins path parts, dropping all falsy parts, except for 0. Accepts any amount of arguments of any type.

Example:

import { join } from 'unity-utils/uri';
console.log(join('path', 'with', null)); // outputs: "path/with"

query(queryObject)

Returns: {Object}

Filters query object, dropping undefined, null and '' values.

queryObject {Object}

Any query-like object.

Example:

import { query } from 'unity-utils/uri';
console.log(query({ param: 'val', 'null': null })); // outputs: "{"param": "val"}"

Contributing

  • Provide conventional commit messages by using npm run commit instead of git commit.
  • Core contributors: use GitHub's Rebase and merge as a default way of merging PRs.

License

MIT © AuRu

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.0.1

8 years ago