18 lines
291 B
JavaScript
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));
|