7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
'use strict';
|
|
|
|
module.exports = function(element) {
|
|
var siteURL = 'https://sarcadass.github.io/granim.js/api.html';
|
|
throw new Error('Granim: Input error on "' + element + '" option.\nCheck the API ' + siteURL + '.');
|
|
};
|