Sha256: fb2772a9f97dced66dc5885b9c3ce71d4efd13ea21477ce2f8b36726a26676ac

Contents?: true

Size: 316 Bytes

Versions: 1

Compression:

Stored size: 316 Bytes

Contents

/**
 * Library version.
 * 
 * @type {String}
 * @api public
 */

exports.version = '0.0.1';

/**
 * Parse the given `str`.
 *
 * Examples:
 *
 *     parse(str)
 *     // => "wahoo"
 *
 * @param {String|Buffer} str to parse
 * @return {String}
 * @api public
 */

exports.parse = function(str) {
  return "wahoo";
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spacedocs-0.0.2 dox/test/fixtures/b.js