npm i -D jasmine babel-cli babel-preset-es2015 babel-watch
.babelrc:
{
"presets": [
"es2015"
#!/bin/sh | |
# SPDX-FileCopyrightText: 2017-2024 SanderTheDragon <[email protected]> | |
# | |
# SPDX-License-Identifier: MIT | |
arch=$(dpkg --print-architecture) | |
echo "Detected architecture: $arch" | |
case "$arch" in |
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Postman | |
Exec=postman | |
Icon=/home/USERNAME/Postman/app/resources/app/assets/icon.png | |
Terminal=false | |
Type=Application | |
Categories=Development; |
npm i -D jasmine babel-cli babel-preset-es2015 babel-watch
.babelrc:
{
"presets": [
"es2015"
$ npm install --save babel-cli babel-preset-es2015
$ npm install --save-dev jasmine
.babelrc:
{
"presets": ["es2015"]
<?php | |
/* | |
|-------------------------------------------------------------------------- | |
| Max Upload File Size filter | |
|-------------------------------------------------------------------------- | |
| | |
| Check if a user uploaded a file larger than the max size limit. | |
| This filter is used when we also use a CSRF filter and don't want | |
| to get a TokenMismatchException due to $_POST and $_GET being cleared. |