Files
gragir.js/lib/gragir.js.js
2018-12-21 16:29:41 +00:00

18 lines
291 B
JavaScript

/*
* gragir.js
* https://github.com/vishap/gragir.js
*
* Copyright (c) 2018 Vahagn Khachatryan
* Licensed under the MIT license.
*/
(function(exports) {
'use strict';
exports.awesome = function() {
return 'awesome';
};
}(typeof exports === 'object' && exports || this));