Move font building related files to font-src

This commit is contained in:
be5invis 2020-06-29 23:31:41 -07:00
parent 9a2f862631
commit c48bc20aa2
56 changed files with 18 additions and 18 deletions

View file

@ -0,0 +1,5 @@
"use strict";
module.exports = function maskBit(x, y) {
return x & (1 << y);
};