clamped element scale to 1.5x

This commit is contained in:
booploops 2022-07-07 16:11:08 -07:00
parent b10279f192
commit 951538e6e7
3 changed files with 6 additions and 7 deletions

View file

@ -1,5 +1,9 @@
var notyf = new Notyf();
function clamp(num, min, max) {
return Math.min(Math.max(num, min), max);
}
const MusicKitObjects = {
LibraryPlaylist: function () {
this.id = "";