local-range

Create a list of unicode ranges usable to subset fonts.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
local-range
500.1.05 years ago5 years agoMinified + gzip package size for local-range in KB

Readme

local-range
const localRange = require('local-range');

localRange
  .toSubsetRanges({
    // a folder to parse (i.e. ~/project/locale)
    folder: '',
    // with languages (folders) to include (default: all)
    include: [],
    // or languages (folders) to exclude / ignore (default: none)
    exclude: [],
    // how text / sentences should be retrieved
    // (by default the message field of the lang object)
    getText: info => info.message
  })
  .then(console.log)
  .catch(console.error);