MCPcopy Index your code
hub / github.com/keepfool/vue-tutorials / recognizeChar

Function recognizeChar

06.Router/basic/js/vue-router.js:419–429  ·  view source on GitHub ↗
(states, ch)

Source from the content-addressed store, hash-verified

417 }
418
419 function recognizeChar(states, ch) {
420 var nextStates = [];
421
422 for (var i = 0, l = states.length; i < l; i++) {
423 var state = states[i];
424
425 nextStates = nextStates.concat(state.match(ch));
426 }
427
428 return nextStates;
429 }
430
431 var oCreate = Object.create || function (proto) {
432 function F() {}

Callers 1

vue-router.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected