UNPKG

react-kiwi-dropdown

Version:

A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.

9 lines (7 loc) 289 B
'use strict'; var codePointAt = require('../internals/string-at'); // `AdvanceStringIndex` abstract operation // https://tc39.github.io/ecma262/#sec-advancestringindex module.exports = function (S, index, unicode) { return index + (unicode ? codePointAt(S, index, true).length : 1); };