Skip to content

Instantly share code, notes, and snippets.

@bravewasp
bravewasp / input.scss
Created March 31, 2022 06:03
Generated by SassMeister.com.
@mixin min-width($base, $unit, $values) {
@each $value in $values {
.mv-#{$value} {
min-width: $value + $unit;
}
}
}
@include min-width(a, "%", (10, 20, 30, 40, 50));
@include min-width(a, "px", (100, 150, 200));
// true-type-of.js
export const trueTypeOf = input => Object.prototype.toString.call(input)
.replace(/(\[object |\])/ig, '')
.toLowerCase();