UNPKG

create-expo-cljs-app

Version:

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

7 lines 231 B
var toInteger = require('./$.to-integer') , max = Math.max , min = Math.min; module.exports = function(index, length){ index = toInteger(index); return index < 0 ? max(index + length, 0) : min(index, length); };