Travel Foldable Electric Kettle, Portable Silicone Collapsible Water Boiler Jug

J7L0H
$17.00 $18.00
Out of Stock
  • [Healthy & Durable]: Made out of food grade silicone that non-toxic and tasteless; More durable than normal silicone for ensuring smooth folding and non-collapsing while pouring out water.
  • [Strong Structure]: The structure of this portable water heater kettle between silicone body and stainless steel heat pad is very strong that too hard to saperate even under the tension of 19kg.
  • [Heat Up Fast]: Built-in dual heat pipes, which boil water quickly under 850W high power; It needs only about 4 minutes for boiling water and the time may different based on different area, voltage or altitude.
  • [Temperature Control]: The fast electric kettle have a adjustable buttom that you can set insulation function to keep the water hot. It will auto shut off and start up again when the boiled water cools down.
  • [No Additional Adapters Needed]: Adjustable dual voltage (100-120V/220-240V) and universal plug make this collapsible electric kettle easy to carry around for travelling without taking additional adapters.

Related Products

You might also like

Whoops! There was an error.
Symfony \ Component \ Debug \ Exception \ FatalErrorException (E_UNKNOWN)
Allowed memory size of 33554432 bytes exhausted (tried to allocate 2097152 bytes) Symfony\Component\Debug\Exception\FatalErrorException thrown with message "Allowed memory size of 33554432 bytes exhausted (tried to allocate 2097152 bytes)" Stacktrace: #0 Symfony\Component\Debug\Exception\FatalErrorException in /home/blacklb/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php:129
0
Symfony
\
Component
\
Debug
\
Exception
\
FatalErrorException
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Store.php
129
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForUnserialize($data)
    {
        return $data;
    }
 
    /**
     * Save the session data to storage.
     *
     * @return bool
     */
    public function save()
    {
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(
            serialize($this->attributes)
        ));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Age the flash data for the session.
     *
     * @return void