martinheidegger/i18n-core

View on GitHub
index.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict'

module.exports = function (data) {
  try {
    return require('./full')(data)
  } catch (e) {
    return require('./simple')(data)
  }
}