Update .bashrc
[dotfiles/.git] / lib / locate / code-inline.js
1 'use strict';
2
3 module.exports = locate;
4
5 function locate(value, fromIndex) {
6   return value.indexOf('`', fromIndex);
7 }