UNPKG

node-foo

Version:

Bogus module for testing npm and node_modules stuff.

18 lines (15 loc) 363 B
/** * node-foo <https://github.com/jonschlinkert/node-foo> * * Copyright (c) 2014 Jon Schlinkert, contributors. * Licensed under the MIT license. */ exports.foo_aaa = function(str) { return 'node-foo aaa:' + str; }; exports.foo_bbb = function(str) { return 'node-foo bbb:' + str; }; exports.foo_ccc = function(str) { return 'node-foo ccc:' + str; };