-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a170e42
commit ca22dda
Showing
2 changed files
with
2 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,10 +61,7 @@ no problem handling this. | |
**Command:** `deno run ./remote.ts` | ||
|
||
```ts | ||
import { | ||
add, | ||
multiply, | ||
} from "https://deno.land/x/[email protected]/mod.ts"; | ||
import { add, multiply } from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
function totalCost(outbound: number, inbound: number, tax: number): number { | ||
return multiply(add(outbound, inbound), tax); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,10 +40,7 @@ clean separation between dev and production dependencies. | |
* This module re-exports the required methods | ||
* from the dependant remote Ramda module. | ||
*/ | ||
export { | ||
add, | ||
multiply, | ||
} from "https://deno.land/x/[email protected]/mod.ts"; | ||
export { add, multiply } from "https://deno.land/x/[email protected]/mod.ts"; | ||
``` | ||
|
||
This example has the same functionality as the | ||
|