Skip to content

Commit

Permalink
fixed doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
pdallmer committed Sep 4, 2024
1 parent 68d29c8 commit ff8ec8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion documentation/modernJs.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ var val = 1;
```

{: .note }
this will only transform syntax features, but not add additional functionality to your code. The second example transforms the arrow function but is not aware, that `array.prototype.map` is not a function in SSJS. To use the map function you have to include the [polyfill]({{ site.baseurl }}{% link documentation/polyfills.md %}).
this will only transform syntax features, but not add additional functionality to your code. The second example transforms the arrow function but is not aware, that `array.prototype.map` is not a function in SSJS. To use the map function you have to include the [polyfill]({% link documentation/polyfills.md %}).
4 changes: 2 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ nav_order: 1
The SSJS Framework creates sfmc compatible SSJS from modern Javascript. \
It helps to manage your dependencies seamlessly by organizing them into distinct modules and
enables code sharing across projects with reusable components.\
Create your own modules and also check out the list of available [packages]({{ site.baseurl }}{% link packages.md %}).
Create your own modules and also check out the list of available [packages]({% link packages.md %}).
## Features
* importing dependencies from node_modules (if ssjs compatible) and local files.
* [polyfills]({{ site.baseurl }}{% link documentation/polyfills.md %})
* [polyfills]({% link documentation/polyfills.md %})
* modern JS syntax
* environment variables
* ampScriptLoader
Expand Down

0 comments on commit ff8ec8a

Please sign in to comment.