summaryrefslogtreecommitdiff
path: root/js/deno.ts
AgeCommit message (Collapse)Author
2018-09-09Expose deno.ErrorKindRyan Dahl
Originally we planned to have a JS class for each error code. But it seems better to just have a single DenoError class with a "kind" property. One nice thing about using an enum instead of classes for errors is that switch() can be used during error handling instead of a bunch of instanceof branches.
2018-09-04lStat -> lstatRyan Dahl
2018-09-04Implement renameSyncMani Maghsoudlou
2018-09-03Implement mkdirSyncSajjad Hashemian
2018-09-01Bundle most types into globals.d.ts (#642)Kitson Kelly
2018-08-31Implemented deno.env and refactored flags.rsAaron Power
2018-08-30Implemented statSync and lStatSyncAaron Power
2018-08-29Implement makeTempDirSync()Bert Belder
2018-08-27Add deno.argv.Ryan Dahl
2018-08-25Prevent circular imports in ts code (#576)Francesco Borzì
2018-08-22Implement writeFileSyncRyan Dahl
In collaboration with Tommy Savaria <tommy.savaria@protonmail.ch>
2018-08-21Expose deno.exit() and add test.Ryan Dahl
2018-08-08Organize libdeno functions.Ryan Dahl
2018-08-08Generate declarationsKitson Kelly
2018-07-24Change copyrights to be 'Deno authors'.Ryan Dahl
2018-07-06Import ts file from prototype without changeRyan Dahl
From commit 559453cf6cc88283bcf8fdeccd387458f5c63165 Excluding v8worker.d.ts, main.ts, and deno.d.ts. Updates tslint.json to be original settings.