10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
|
import { CountUp } from './countUp.js';
|
|||
|
const options = {
|
|||
|
separator: '.',
|
|||
|
};
|
|||
|
countUp = new CountUp('gifts', 0, options);
|
|||
|
if (!countUp.error) {
|
|||
|
countUp.start();
|
|||
|
} else {
|
|||
|
console.error(countUp.error);
|
|||
|
}
|