Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrspeaker/lowerdash
Javascript's Array Iteration methods for UnityScript
https://github.com/mrspeaker/lowerdash
Last synced: 14 days ago
JSON representation
Javascript's Array Iteration methods for UnityScript
- Host: GitHub
- URL: https://github.com/mrspeaker/lowerdash
- Owner: mrspeaker
- Created: 2014-02-03T12:01:09.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-03T14:16:27.000Z (almost 11 years ago)
- Last Synced: 2024-10-10T22:48:46.520Z (about 1 month ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lowerdash: array iteration methods for UnityScript
Lowerdash v0.1 by Mr Speaker (@mrspeaker)
Makes processing Arrays in Unity a bit nicer. Add Lowerdash.js to your `assests` directory to get access to the static methods. Here's an example:
_.map(Array(1,2,3), function (el: int) {
return el * 2;
}; // [2, 4, 6]See LowerdashTest.test() for more examples, and unit tests.