Source: index.js

"use strict";
/**
 * @fileOverview Aggregates the various string tools into a single module.

 * @author Terry Weiss
 * @module ink/strings
 * @copyright Copyright © 2011-2012 Terry Weiss. All rights reserved
 */

var sys = require( "lodash" );
var base64 = require( "./src/base64" );
var binary = require( "./src/binary" );
var generators = require( "./src/generators" );
var html = require( "./src/html" );
var patterns = require( "./src/patterns" );
var shape = require( "./src/shape" );
var sprintf = require( "./src/sprintf" );
var tests = require( "./src/tests" );

sys.extend( exports, base64, binary, generators, html, patterns, shape, sprintf, tests );

//noinspection JSHint
(function ( window ) {
	(function ( ink ) {
		ink.strings = exports;
	})( window.ink = window.ink || {} );

})( this );

See NOTICE.md for licenses
ink-strings Copyright contributers to ink-strings, base64, Helma, RingoJS, sprintf projects.
Documentation generated by JSDoc 3.2.0-dev on Sun Jun 09 2013 11:56:07 GMT-0400 (EDT) using the DocStrap template.