UNPKG

telefunc

Version:

Remote functions. Instead of API.

7 lines (6 loc) 223 B
import { assert } from './assert.js'; export function getTelefunctionKey(filePath, exportName) { assert(!exportName.includes(':')); const telefunctionKey = filePath + ':' + exportName; return telefunctionKey; }