clamped element scale to 1.5x
This commit is contained in:
parent
b10279f192
commit
951538e6e7
3 changed files with 6 additions and 7 deletions
|
@ -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 = "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue