https://github.com/kripken/emscripten
Raw File
Tip revision: e9971d17e02d3fc3861f35d629a29baa6931842c authored by Eric Mandel on 08 July 2019, 21:38:37 UTC
Add extended Node feature check to fix issue #8816 (#8832)
Tip revision: e9971d1
emcc
#!/usr/bin/env python

# This script should work in python 2 *or* 3. It loads the main code using
# python_selector, which may pick a different version.

from tools import python_selector

import sys

if __name__ == '__main__':
  python_selector.run(__file__)
back to top