In a React Native file:
import sjcl from './sjcl';
import './sha1x';
Functions in these files need access to each other. In particular, I'm trying to implement PBKDF2 according to this example. The author notes that I need to include both files. How can I give the functions within these files visibility to each other without modifying the files?