Socket
Socket
Sign inDemoInstall

fairmont

Package Overview
Dependencies
Maintainers
2
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fairmont

A collection of useful functions and utilities.


Version published
Weekly downloads
3.6K
decreased by-23.72%
Maintainers
2
Weekly downloads
 
Created
Source

Fairmont

A collection of useful CoffeeScript/JavaScript functions.

Array Functions

remove

Destructively remove an element from an array. Returns the element removed.

a = w "foo bar baz"
remove( a, "bar" )

uniq

Takes an array and returns a new array with all duplicate values from the original array removed. Also takes an optional hash function that defaults to calling toString on the elements.

uniq [1,2,3,1,2,3,4,5,6,3,6,2,4]
# returns [1,2,3,4,5,6]

shuffle

Takes an array and returns a new array with all values shuffled randomly.

shuffle ["a", "b", "c", "d", "e", "f"]
# for e.g.: returns ["b", "c", "d", "e", "f", "a"]

Use the Fisher-Yates algorithm.

Adapted from the CoffeeScript Cookbook.

Hashing/Encoding Functions

md5

Return the MD5 hash of a string.

nutshell = md5( myLifeStory )

base64

Base64 encode a string. (Not URL safe.)

image = data: base64( imageData )

File System Functions

All file-system functions are based on Node's fs API. This is not required unless the function is actually invoked.

exists

Check to see if a file exists.

source = read( sourcePath ) if exists( sourcePath )

read

Read a file synchronously and return a UTF-8 string of the contents.

source = read( sourcePath ) if exists( sourcePath )

readdir

Synchronously get the contents of a directory as an array.

for file in readdir("documents")
  console.log read( file ) if stat( file ).isFile()

stat

Synchronously get the stat object for a file.

for file in readdir("documents")
  console.log read( file ) if stat( file ).isFile()

write

Synchronously write a UTF-8 string to a file.

write( file.replace( /foo/g, 'bar' ) )

chdir

Change directories, execute a function, and then restore the original working directory.

chdir "documents", ->
  console.log read( "README" )

rm

Removes a file.

rm "documents/reamde.txt"

rmdir

Removes a directory.

rmdir "documents"

General Purpose Functions

w

Split a string on whitespace. Useful for concisely creating arrays of strings.

console.log word for word in w "foo bar baz"

to

Hoist a value to a given type if it isn't already. Useful when you want to wrap a value without having to check to see if it's already wrapped.

For example, to hoist an error message into an error, you would use:

to(error, Error)

abort

Simple wrapper around process.exit(-1).

memoize

A very simple way to cache results of functions that take a single argument. Also takes an optional hash function that defaults to calling toString on the function's argument.

nickname = (email) ->
  expensiveLookupToGetNickname( email )
#
memoize( nickname )

timer

Set a timer. Takes an interval in microseconds and an action. Returns a function to cancel the timer. Basically, a more convenient way to call setTimeout and clearTimeout.

cancel = timer 1000, -> console.log "Done"
cancel()

Object Functions

include

Adds the properties of one or more objects to another.

include( @, ScrollbarMixin, SidebarMixin )

property

Add a property method to a class, making it easier to define getters and setters on its prototype.

class Foo
  include @, Property
  property "foo", get: -> @_foo, set: (v) -> @_foo = v

Properties defined using property are enumerable.

delegate

Delegates from one object to another by creating functions in the first object that call the second.

delegate( aProxy, aServer )

merge

Creates new object by progressively adding the properties of each given object.

options = merge( defaults, globalOptions, localOptions )

clone

Perform a deep clone on an object. Taken from The CoffeeScript Cookboox.

copy = clone original

String Functions

capitalize

Capitalize the first letter of a string.

titleCase

Capitalize the first letter of each word in a string.

camel_case

Convert a sequence of words into a camel-cased string.

# yields fooBarBaz
camel_case "foo bar baz"

underscored

Convert a sequence of words into an underscore-separated string.

# yields foo_bar_baz
underscored "foo bar baz"

dashed

Convert a sequence of words into a dash-separated string.

# yields foo-bar-baz
dashed "foo bar baz"

plain_test

Convert an camel-case or underscore- or dash-separated string into a whitespace separated string.

# all of the following yield foo bar baz
plain_text "fooBarBaz"
plain_text "foo-bar-baz"
plain_text "foo_bar_baz"

htmlEscape

Escape a string so that it can be embedded into HTML. Adapted from Mustache.js.

Type Functions

type

Get the type of a value. Possible values are: number, string, 'boolean, data, regexp, function, array, object, null, undefined. Adapted from [The CoffeeScript Cookbook][type-0] and based on Douglas Crockford's [remedial JavaScript blog post][type-1]. [type-0]:http://coffeescriptcookbook.com/chapters/classes_and_objects/type-function [type-1]:http://javascript.crockford.com/remedial.html

foo() if type( foo ) == "function"

Keywords

FAQs

Package last updated on 28 May 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc