fix/description #106

Open
florent.lesaout wants to merge 4 commits from fix/description into master
3 changed files with 4 additions and 4 deletions
Showing only changes of commit 30b122f57c - Show all commits

View File

@ -1,4 +1,4 @@
module.exports = {
export default {
random() {
const segment = () => {
return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);

View File

@ -1,4 +1,4 @@
module.exports = {
export default {
getNextHeadingLevel(currentLevel) {
return parseInt(currentLevel, 10) + 1;
},

View File

@ -1,6 +1,6 @@
const tokens = require('./tokens.json');
import tokens from './tokens.json' with { type: "json" };
module.exports = {
export default {
colors() {
let response = [];