@ -172,7 +172,7 @@ For more information, see [CONTRIBUTING.md](https://github.com/Budibase/budibase
## 📝 License
Budibase is open-source. The builder is licensed [AGPL v3](https://www.gnu.org/licenses/agpl-3.0.en.html), the server is licensed [GPL v3](https://www.gnu.org/licenses/gpl-3.0.en.html), and the client is licensed [MPL](https://directory.fsf.org/wiki/License:MPL-2.0).
Budibase is open-source, licensed as [GPL v3](https://www.gnu.org/licenses/gpl-3.0.en.html). The client and component libraries are licensed as [MPL](https://directory.fsf.org/wiki/License:MPL-2.0) - so the apps that you build can be licensed however you like.
"description":"<p>Returns true if the the length of the given <code>value</code> is equal to the given <code>length</code>. Can be used as a block or inline helper.</p>\n"
},
"last":{
@ -262,7 +262,7 @@
"value"
],
"numArgs":1,
"example":"{{length [1, 2, 3]}} -> 3",
"example":"{{length '[1, 2, 3]'}} -> 3",
"description":"<p>Returns the length of the given string or array.</p>\n"
},
"lengthEqual":{
@ -272,7 +272,7 @@
"options"
],
"numArgs":3,
"example":"{{equalsLength [1,2,3] 3}} -> true",
"example":"{{equalsLength '[1,2,3]' 3}} -> true",
"description":"<p>Returns true if the the length of the given <code>value</code> is equal to the given <code>length</code>. Can be used as a block or inline helper.</p>\n"
},
"map":{
@ -1097,8 +1097,8 @@
"format"
],
"numArgs":2,
"example":"{{date now \"DD-MM-YYYY\"}} -> 21-01-2021",
"description":"<p>Format a date using moment.js date formatting.</p>\n"
"example":"{{date now \"DD-MM-YYYY\" \"America/New_York\" }} -> 21-01-2021",
"description":"<p>Format a date using moment.js date formatting - the timezone is optional and uses the tz database.</p>\n"