UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

14 lines (11 loc) 261 B
'use strict'; var typeHandlers = require('./types'); module.exports = function (buffer, filepath) { var type, result; for (type in typeHandlers) { result = typeHandlers[type].detect(buffer, filepath); if (result) { return type; } } };