'use strict';
var anime = require('animejs');
function printMsg() {
console.log('Chicken');
console.log('Nugget');
}
function testAnime() {
anime({
targets: 'h1',
translateX: [0, 20]
});
}
module.exports = {
printMsg: printMsg,
testAnime: testAnime
};