Comparing version 1.0.0-alpha-11 to 1.0.0-alpha-12
@@ -20,3 +20,3 @@ // Generated by CoffeeScript 1.9.1 | ||
describe("File system functions", function(context) { | ||
var binary, chdir, curry, dirname, exists, is_directory, is_file, lines, mkdir, mkdirp, read, read_stream, readdir, ref2, rm, rmdir, stat, stream, write; | ||
var binary, chdir, curry, dirname, exist, exists, is_directory, is_file, lines, mkdir, mkdirp, read, read_stream, readdir, ref2, rm, rmdir, stat, stream, write; | ||
stat = function(path) { | ||
@@ -32,3 +32,3 @@ return fs(function(arg) { | ||
}); | ||
exists = function(path) { | ||
exists = exist = function(path) { | ||
return fs(function(arg) { | ||
@@ -269,16 +269,17 @@ var stat; | ||
return module.exports = { | ||
exists: exists, | ||
read: read, | ||
read_stream: read_stream, | ||
write: write, | ||
stream: stream, | ||
lines: lines, | ||
readdir: readdir, | ||
rm: rm, | ||
stat: stat, | ||
write: write, | ||
chdir: chdir, | ||
rm: rm, | ||
rmdir: rmdir, | ||
exist: exist, | ||
exists: exists, | ||
is_file: is_file, | ||
is_directory: is_directory, | ||
readdir: readdir, | ||
mkdir: mkdir, | ||
mkdirp: mkdirp | ||
mkdirp: mkdirp, | ||
chdir: chdir, | ||
rmdir: rmdir | ||
}; | ||
@@ -285,0 +286,0 @@ }); |
@@ -463,3 +463,5 @@ // Generated by CoffeeScript 1.9.1 | ||
sum: sum, | ||
average: average | ||
average: average, | ||
join: join, | ||
delimit: delimit | ||
}; | ||
@@ -466,0 +468,0 @@ }); |
{ | ||
"name": "fairmont", | ||
"version": "1.0.0-alpha-11", | ||
"version": "1.0.0-alpha-12", | ||
"description": "A collection of useful functions and utilities.", | ||
@@ -5,0 +5,0 @@ "files": [ |
118
README.md
@@ -31,121 +31,27 @@ # Fairmont | ||
## List of Functions | ||
## Function Reference | ||
### Core Functions | ||
* [Core][core] | ||
* [Logical][logical] | ||
* [Numeric][numeric] | ||
* [Type][core] | ||
* [Array][array] | ||
* [Iterator][it] | ||
* [Crypto-Related][crypto] | ||
* [File System][fs] | ||
* [Object][object] | ||
* [String][string] | ||
* [Other][misc] | ||
* [API Reference][core] | ||
> | ||
identity, wrap, curry, _, partial, flip, | ||
compose, pipe, variadic, unary, binary, ternary | ||
[core]:src/core.litcoffee | ||
### Logical Functions | ||
* [API Reference][logical] | ||
> | ||
f_and, f_or, negate, f_eq, f_neq | ||
[logical]:src/logical.litcoffee | ||
### Numeric Functions | ||
* [API Reference][numeric] | ||
> | ||
gt, lt, gte, lte, add, sub, mul, div, mod, | ||
even, odd, min, max | ||
[numeric]:src/numeric.litcoffee | ||
### Type Functions | ||
* [API Reference][core] | ||
> | ||
deep_equal, type, is_type, instance_of, | ||
is_string, is_function | ||
[type]:src/type.litcoffee | ||
### Array functions | ||
* [API Reference][array] | ||
> | ||
cat, slice, first, second, third, last, rest, | ||
includes, unique_by, unique, uniq, dupes, union, intersection, | ||
remove, shuffle | ||
[array]:src/array.litcoffee | ||
### Iterator Functions | ||
* [API Reference][it] | ||
> | ||
is_iterable, iterator, is_iterator, iterate, | ||
collect, map, fold, foldr, select, reject, any, all, zip, unzip, | ||
assoc, project, flatten, partition, take, leave, skip, sample | ||
[it]:src/iterator.litcoffee | ||
### Crypto Functions | ||
* [API Reference][crypto] | ||
> | ||
md5, base64, base64url | ||
[crypto]:src/crypto.litcoffee | ||
### File System Functions | ||
* [API Reference][fs] | ||
> | ||
exists, stat, read, readdir, read_stream, read_block, lines, | ||
write, chdir, rm, rmdir | ||
[fs]:src/fs.litcoffee | ||
### Object Functions | ||
* [API Reference][object] | ||
> | ||
include/extend, merge, clone, pluck, property, delegate, bind, detach | ||
[object]:src/object.litcoffee | ||
### String Functions | ||
* [API Reference][string] | ||
> | ||
capitalize, title_case, camel_case, underscored, | ||
dashed, plain_text, html_escape, w | ||
[string]:src/string.litcoffee | ||
### Miscellaneous Functions | ||
* [API Reference][misc] | ||
> | ||
times, shell, sleep, timer, memoize, abort | ||
[misc]:src/index.litcoffee | ||
@@ -152,0 +58,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1777
95648
77