Returns a new array without the empty strings.
var myArray = [ "hakan", "", "0", 0, false ];
myArray = myArray.filterEmpty();
| <?php | |
| use Illuminate\Console\Command; | |
| use Symfony\Component\Console\Input\InputOption; | |
| use Symfony\Component\Console\Input\InputArgument; | |
| class InstallCommand extends Command { | |
| /** | |
| * The console command name. |
| Object.defineProperty(Object.prototype, "getDotNotated", { | |
| value: function (dotNotation) { | |
| var arrayOfNames = dotNotation.split('.'); | |
| var tmp = this; | |
| for (var i in arrayOfNames) { | |
| if (arrayOfNames.hasOwnProperty(i)) { | |
| tmp = tmp[arrayOfNames[i]]; | |
| } | |
| } |
| Object.defineProperty(Object.prototype, "setDotNotated", { | |
| value: function (dotNotation, value) { | |
| var arrayOfNames = dotNotation.split('.'); | |
| var last = arrayOfNames.pop(); | |
| var tmp = this; | |
| for (var i in arrayOfNames) { | |
| if (!arrayOfNames.hasOwnProperty(i)) | |
| continue; |
| // I composed them into my layout file | |
| View::composer('layout', function($view) | |
| { | |
| // Current route object | |
| $route = Route::getCurrentRoute(); | |
| // Take out first part of route (the locale key) | |
| $routeWithoutLang = implode('.', array_slice(explode('.', $route->getName()), 1)); | |
| // You should probably put this in a foreach loop |
| :focus, :active { | |
| outline: 0 !important; | |
| } |
| <?php | |
| namespace App\Console\Commands; | |
| use App\User; | |
| use Illuminate\Console\Command; | |
| class CheckSessionForNodeSocket extends Command | |
| { | |
| /** |
| <template> | |
| <div class="some-class"> | |
| {{ someVariable }} | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| data() { | |
| return { |
| html { | |
| background: #f5f5f5; | |
| } | |
| /* CONTENT PAGE */ | |
| .forum .forum-thread { | |
| background: none; | |
| } |
| 0⃣ 0, keycap, zero | |
| 1⃣ 1, number, one | |
| 🕜 1, 30, clock, time, one, thirty, 1:30, one-thirty | |
| 🕐 1, clock, time, one, 00, o’clock, 1:00, one o’clock | |
| 2⃣ 2, number, two | |
| 🕝 2, 30, clock, time, two, thirty, 2:30, two-thirty | |
| 🕑 2, clock, time, two, 00, o’clock, 2:00, two o’clock | |
| 3⃣ 3, keycap, three | |
| 🕞 3, 30, three, clock, time, thirty, 3:30, three-thirty | |
| 🕒 3, three, clock, time, 00, o’clock, 3:00, three o’clock |