Skip to content

Instantly share code, notes, and snippets.

View juliasut's full-sized avatar
:octocat:

Iuliia Sut juliasut

:octocat:
  • Edmonton, Alberta
  • 18:50 (UTC -12:00)
View GitHub Profile
@juliasut
juliasut / function-composition-elegant.js
Created January 21, 2023 05:41 — forked from battmanz/function-composition-elegant.js
Demonstrates function composition using Ramda.
// h(x) = x + 1
// number -> number
function h(x) {
return x + 1;
}
// g(x) = x^2
// number -> number
function g(x) {
return x * x;
@juliasut
juliasut / README-Template.md
Created November 11, 2022 16:42 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites