jusfox/index.js

10 lines
219 B
JavaScript
Raw Normal View History

2016-07-19 15:19:05 +00:00
var self = require("sdk/self");
// a dummy function, to show how tests work.
// to see how to test this function, look at test/test-index.js
function dummy(text, callback) {
callback(text);
}
exports.dummy = dummy;