diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2025-04-12 12:14:37 +0200 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2025-04-12 12:14:37 +0200 |
commit | 67b48ae4e6fadb812334b5836aa4a6e6e46d459b (patch) | |
tree | 9f612b2fff9b5009323364c9e20384b9eab86982 /repl.js | |
parent | c50de13b1573735c57e918f2739428b82dd2481f (diff) | |
download | quickjs-67b48ae4e6fadb812334b5836aa4a6e6e46d459b.tar.gz quickjs-67b48ae4e6fadb812334b5836aa4a6e6e46d459b.zip |
- removed the 'use strip' extension
- removed the JS_EVAL_FLAG_STRIP eval flag and replaced it with JS_SetStripInfo() which has simpler semantics.
- qjs: added the '-s' and '--strip-source' options
- qjsc: added the '-s' and '--keep-source' options
Diffstat (limited to 'repl.js')
-rw-r--r-- | repl.js | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -22,8 +22,6 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ -"use strip"; - import * as std from "std"; import * as os from "os"; |