var -> const

This commit is contained in:
dragonwocky 2021-12-20 12:14:03 +11:00
parent caa0117318
commit 081e59bb78

View File

@ -55,7 +55,7 @@ export const uuidv4 = () => {
* @returns {string} the shaded color * @returns {string} the shaded color
*/ */
export const rgbLogShade = (p, c) => { export const rgbLogShade = (p, c) => {
var i = parseInt, const i = parseInt,
r = Math.round, r = Math.round,
[a, b, c, d] = c.split(','), [a, b, c, d] = c.split(','),
P = p < 0, P = p < 0,