UNPKG

182 BJavaScriptView Raw
1"use strict";
2
3module.exports = function (t, a) {
4 a(typeof t.width, "number", "Width");
5 a(typeof t.height, "number", "Height");
6 a(t.width >= 0, true);
7 a(t.height >= 0, true);
8};