sicp
sicp copied to clipboard
XML sources of SICP and SICP JS, and support for generating Interactive SICP JS, PDF, e-book and comparison editions
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.17.10 to 7.18.9. Release notes Sourced from @babel/preset-env's releases. v7.18.9 (2022-07-18) :bug: Bug Fix babel-plugin-transform-modules-systemjs, babel-types #14763 fix: allow exporting TSDeclareFunction as default (@zxbodya) babel-generator #14758 fix:...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.17.10 to 7.18.9. Release notes Sourced from @babel/core's releases. v7.18.9 (2022-07-18) :bug: Bug Fix babel-plugin-transform-modules-systemjs, babel-types #14763 fix: allow exporting TSDeclareFunction as default (@zxbodya) babel-generator #14758 fix:...
Bumps [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) from 7.17.10 to 7.18.9. Release notes Sourced from @babel/node's releases. v7.18.9 (2022-07-18) :bug: Bug Fix babel-plugin-transform-modules-systemjs, babel-types #14763 fix: allow exporting TSDeclareFunction as default (@zxbodya) babel-generator #14758 fix:...
Bumps [prettier](https://github.com/prettier/prettier) from 2.6.2 to 2.7.1. Release notes Sourced from prettier's releases. 2.7.1 🔗 Changelog 2.7.0 diff 🔗 Release note Changelog Sourced from prettier's changelog. 2.7.1 diff Keep useful empty...
Bumps [husky](https://github.com/typicode/husky) from 7.0.4 to 8.0.1. Release notes Sourced from husky's releases. v8.0.1 fix: use POSIX equality operator v8.0.0 What's Changed Feats feat: add husky - prefix to logged global...
Bumps [http-server](https://github.com/http-party/http-server) from 14.1.0 to 14.1.1. Release notes Sourced from http-server's releases. v14.1.1 Patch CVE-2021-44906 @dpassen (#803) Other changes Bump follow-redirects from 1.14.4 to 1.14.8 @dependabot (#794) Commits af0ac3e 14.1.1...
lack a space: `head(x) ==="**" ` -> `head(x) === "**"`
# Issue #777
``` function assoc(key, records, same_key) { return is_null(records) ? undefined : same_key(key, head(head(records))) ? head(records) : assoc(key, tail(records), same_key); } function make_table(same_key) { const local_table = list("*table"); const get_value =...