octo-deno/lib/make/units.js

18 lines
498 B
JavaScript
Raw Normal View History

2017-04-22 22:49:49 +00:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2017-04-25 15:03:55 +00:00
make.unit = {
2017-04-25 15:24:56 +00:00
unit: function () {
2017-04-22 22:49:49 +00:00
return random.pick([
"px", "em", "ex", "ch", "rem", "mm", "cm", "in", "pt", "pc", "%"
]);
},
length: function () {
2017-04-25 15:24:56 +00:00
return make.number.any() + make.unit.unit();
2017-04-22 22:49:49 +00:00
},
percent: function () {
2017-04-25 15:19:25 +00:00
return make.number.any() + "%";
2017-04-22 22:49:49 +00:00
},
};